jQuery(document).ready(function($){
	/*main_menu*/
	$(".sub_menu").hide();
		
	$(".lvl1").hoverIntent(function(){	
		$(".sub_menu").hide();
		$(this).children('.sub_menu').show();
		$(this).children('a').css('color', '#ff0099');
	}, function() {
		$(this).children('.sub_menu').hide();
		$(this).children('a').css('color', '#333333');
	});

});
