$(document).ready(function () {
	style = 'easeOutQuart';
	$('.prev_post').hover(
		function() {
			$(this).children('div:first').stop(false,true).animate({top:0},{duration:200, easing: style});
			$(this).children('div:last').stop(false,true).animate({bottom:0},{duration:200, easing: style});
		},
		function() {
			$(this).children('div:first').stop(false,true).animate({top:-34},{duration:200, easing: style});
			$(this).children('div:last').stop(false,true).animate({bottom:-23},{duration:200, easing: style});
		}
	);
});

 function ShowHide(){
 $("#hidesearch").animate({"height": "toggle"}, { duration:  500 });
 }
 