$(document).ready(function(){ 
	$('div.topmenu').hover(function() {
		$(this).parent().find('.submenu').fadeToggle("slow", "swing")
	});
});  
