$(document).ready(function(){

$('a.logo').mouseover(function(){
		$(this).stop().animate({
			backgroundColor: "#de4935"
		},500)
	})
	.mouseout(function(){
		$(this).stop().animate({
			backgroundColor: "#494949"
		},500)
	});
	
$('a[href=#index]').click(function(){
   $.scrollTo(0,'slow');
   return false;
 });
 $('a[href=#work]').click(function(){
   $.scrollTo('#work','slow');
   return false;
 });
 $('a[href=#about]').click(function(){
   $.scrollTo('#about','slow');
   return false;
 });
 $('a[href=#contact]').click(function(){
   $.scrollTo('#contact','slow');
   return false;
 });
	
});

























