var $j = jQuery.noConflict();
	$j(document).ready(function(){
	$j('.menu-nav li').hover(
		function() {
			$j(this).addClass("actives");
			$j(this).find(' > .ulwrapper').stop(false, true).fadeIn();
		},
		function() {
			$j(this).removeClass("actives");        
			$j(this).find('div').stop(false, true).fadeOut('fast');
		}
	);
	$j('.ulwrapper').hover(
		function() {
			$j('.parent').addClass("active_tab");
		},
		function() {
			$j('.parent').removeClass("active_tab");        
		}
	);
	
});
