$(document).ready(function(){
	
	$('div.info').hide();
	
	$('div.product img').fadeTo(0, 0.9);
	
	$('div.product').hover(function(){
		$('div.info', $(this)).slideDown(150);
		$('img', $(this)).fadeTo(150, 1);
	},function(){
		$('div.info', $(this)).slideUp(150);
		$('img', $(this)).fadeTo(150, 0.9);
	});
		
});
