$(document).ready(function(){	
	$("ul.topmain > li").hover(function() { 						
			//$(this).children("ul.submain").show();
			$(this).children("div.ie7").show();
		}, function(){
			//$(this).children("ul.submain").hide();
			$(this).children("div.ie7").hide();	
		}
	); 	    
});
