jQuery(document).ready(function(){
    jQuery("ul.nav li").hover(
	  function () {
	    jQuery(this).addClass("hover");
	  },
	  function () {
	    jQuery(this).removeClass("hover");
	  }
	
    );

    jQuery(".page-template-homepage-php .sidebar .feature_box.expandable").hover(
	  function () {
		jQuery(this).animate(
							{bottom: '0px', height: '250px'},
		 					450,
							'swing'
							);
		//jQuery(this).find("img").fadeIn(550);
		
	  },
	  function () {
		jQuery(this).animate(
							{bottom: '-120px', height: '120px'},
		 					200,
							'linear'
							);
		//jQuery(this).find("img").fadeOut(250);
	  }
	
    );

});


