$(document).ready(function(){

	$('.img, p, .wpcf7 form').hide();
	$('.img, p, .wpcf7 form').fadeIn('slow');

	$(".navigation li a, #header h1 a, #rss a").click(function()
		{ 
			$("#content").css("border-bottom","none");
			$('.img, p, .wpcf7 form').fadeOut('normal');
			$(".current_page_item a").css("background","#ffffff");
			$(".current_page_item a").stop().animate({backgroundPosition:"(-210px 0px)", color:"#474748"}, {duration:1000, complete:function(){
				$(this).css({backgroundPosition: "-210px 0px"})
			}});
			
		});
	
	$('.navigation li a')
		.css( {backgroundPosition: "-210px 0px"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(0px 0px)" , color:"#474748"}, {duration:600})
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(-210px 0px)", color:"#474748"}, {duration:600, complete:function(){
				$(this).css({backgroundPosition: "-210px 0px"})
			}})
		})
		
	$('.current_page_item a')
		.css( {backgroundPosition: "-210px 0px"} )
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(0px 0px)", color:"#ffffff"}, {duration:600, complete:function(){
				$(this).css({backgroundPosition: "-210px 0px"})
			}})
		})
});

