$().ready(function(){
	$("#mainLinks ul a").hover(
		function(){$(this).stop().animate({  paddingRight: 40 }, 200 )},
		function(){$(this).stop().animate({ paddingRight: 4 }, 200 ); $(this).css('background-color','');}
	)
	$("div.address").hover(
		function(){$(this).stop().animate({  paddingRight: 20 }, 200 )},
		function(){$(this).stop().animate({ paddingRight: 9 }, 200 )}
	)
	$("div#contact").click( function(){ 
		window.location.href = 'contact.html'
	})
})
