$(document).ready(function()
{
	// toggle contact form
	$('a.contact').click(function() {
		$('form#contact').slideDown(function() {
			$('html,body').scrollTop(1000);
		});
	});
	
	if($('div.msg_success').length)
	{
		$('h2:last').next('p').hide();
		$('html,body').scrollTop(1000);
	}
	
	// Twitter icon
	$("a#twitter img").hover(function() {
		$(this).attr("src", 'img/twitter-hover.png');
	}, function() {
		$(this).attr("src", 'img/twitter.png');
	});
	
});
