jQuery.noConflict();
jQuery(document).ready(function(){
	jQuery('.nav li').hover(
			function() {
				jQuery(this).addClass("active");
				jQuery(this).find('.ulwrapper').stop(false, true).fadeIn();
				jQuery(this).find('.ulwrapper .ulwrapper').stop(false, true).fadeOut('fast');
			},
			function() {
				jQuery(this).removeClass("active");        
				jQuery(this).find('div').stop(false, true).fadeOut('fast');
			}
		);
		jQuery('.ulwrapper').hover(
			function() {
				jQuery(this).parent('.parent').addClass("active_tab");
			},
			function() {
				jQuery('.parent').removeClass("active_tab");        
			}
		);
});
