$(document).ready(function(){	
	$(".topSection div").hide();
	$("div.topSection").hover(
		function() { $('div', this).css('display', 'block'); },
		function() { $('div', this).css('display', 'none'); }
	);
});

