jQuery(document).ready(function(){

     //Post Meta Data Sliding
	   jQuery('.postThumb').hover(function(){
	        jQuery(".metadata", this).stop().animate({top:'-110px'},{queue:false,duration:160});
	        }, function() {
	        jQuery(".metadata", this).stop().animate({top:'10px'},{queue:false,duration:160});
	        });	     
     //SubMenu color change
    	   jQuery('#navigation ul li ul li').hover(function(){
	        jQuery(this).stop().animate({backgroundColor: '#297487'},{queue:false,duration:320});
	        }, function() {
	        jQuery(this).stop().animate({backgroundColor: '#333333'},{queue:false,duration:320});
	        });
     //readmore button effect
            jQuery('.readmoreButton a').hover(function(){
	        jQuery(this).stop().animate({backgroundPosition: '-2px 36px'},{queue:false,duration:0});
                jQuery(this).stop().animate({width:'200px'},{queue:false,duration:320});
	        }, function() {
                jQuery(this).stop().animate({width:'135px'},{queue:false,duration:320});
	        });
     //change color of post title      
          jQuery('.postTitle h1 a').hover(function(){
	        jQuery(this).stop().animate({color: '#343434'},{queue:false,duration:220});
	        }, function() {
                jQuery(this).stop().animate({color: '#26788E'},{queue:false,duration:220});
	        });	
          jQuery('#social_networks a').hover(function(){
	        jQuery(this).stop().fadeTo(320, 0.5);
	        }, function() {
               jQuery(this).stop().fadeTo(320, 1);
	        });	
});
