$( function () {
	$("div#menu_top ul.parent li.parent").hover( function () {
		$(this).addClass('iehover');
		$(this).find('ul').show();
	}, function () {		
		$(this).removeClass('iehover');
		$(this).find('ul').hide();
	});
});
