jQuery(document).ready(function() {

jQuery("ul.nav").mousemove(function(e){

	/* var x = e.pageX - this.offsetLeft ; */
	var y = e.pageY / 2 - this.offsetTop ;

      jQuery("ul.nav").css({backgroundPosition: "-"+y+"px"});
   });
   
   jQuery(".post h2:first").css("display", "none");
   jQuery("body#news .post h2").css("display", "block");
	jQuery("body#archives ul.nav li:nth-child(2)").addClass("current_page_item");
	jQuery(".post h3:first").attr("id", "top"); 
    
   
jQuery('.backtotop').click(function(){
jQuery('html, body').animate({scrollTop:0}, 'slow');
});
    
 });
 
 
 