$(document).ready(function() {
$('.bar', this).hide();
$('.info-button', this).hide();
$('.home-post-wrap').hover(
	function() {
		$('.bar', this).slideDown('slow');
		$('.info-button', this).slideDown('slow');
	},
	function() {
		$('.bar', this).stop(1, 1).hide();
		$('.info-button', this).stop(1, 1).hide();
		$('.info', this).stop(1, 1).hide();
		$('.ratingbox', this).stop(1, 1).hide();
	}
);

});


