$(function() {
	$(".info").css({display: "none"});
	$('.img').click(function() {
		$(this).next(".info").slideToggle();
		return false;
	});
});