 $(document).ready(function() {
	// adding animation to navigation		
	$('#header').append('<style type="text/css"> .nav li a:hover { background-position: 0 0; } .nav li.page-item-3 a:hover { background-position: 0 -30px; } .nav li.page-item-5 a:hover { background-position: 0 -60px;  } .nav li.page-item-7 a:hover { background-position: 0 -90px;  } .nav li.page-item-9 a:hover { background-position: 0 -120px; 	} 	</style>');
			
	$('.nav a').mouseover(
		function()
		{
			whatClass = ($(this).parents('li').attr('class'))
			
			if ( whatClass.substr(whatClass.length-17) != 'current_page_item') { $(this).animate({opacity : 0}, 200) };
		}
	);
	
	$('.nav a').mouseout(
		function()
		{
			$(this).animate({opacity : 1}, 200)
		}
	);
	
	// logo animation
	$('a.logo').append('<span class="shining">&nbsp</span>');
	$('.shining').hide().css('background','url(/wp-content/themes/ver1/images/shine.gif) 0 0 no-repeat');
	$('a.logo').hover( function() { $('.shining').fadeIn(300) }, function(){ $('.shining').fadeOut(500)} );
	 
});
