$(function(){
	$("#features li").hover(
	  function () {
		$(this).find('.feat_exceprt').animate({opacity:1},{queue:false,duration:100});
		//$('.feat_exceprt').slideDown();
	  }, 
	  function () {
		//$(this).find('.feat_exceprt').slideUp();
		$(this).find('.feat_exceprt').animate({opacity:0},{queue:false,duration:100});
		//$(this).find('.feat_exceprt').animate({top:'-145px'},{queue:false,duration:500});
		//$('.feat_exceprt').slideUp();
	  }
	);
	
	//slider
	$("#slideshow").easySlider({
		auto: true, 
		continuous: true,
		controlsShow: false,
		pause: 5000
	});
	
	//$('.single_post:last-child').css('background', 'yellow');
});
