preloadimages("/images/structure/drop_link_bg.gif","/images/structure/drop_bgs_bottom.gif","/images/structure/drop_bgs.gif","/images/structure/menu_left.png","/images/structure/menu_right.png");
		
		var $j = $.noConflict();

		$j(document).ready(function(){

		$j('.menu-nav li').hover(

			function() {
				$j(this).addClass("active");
				$j(this).find('> .ulwrapper').stop(false, true).fadeIn();
			},

			function() {
				$j(this).removeClass("active");
				$j(this).find('div').stop(false, true).fadeOut('fast');
			}
		);

		$j('.ulwrapper').hover(
			function() {
				$j('.parent').addClass("active_tab");
			},

			function() {
				$j('.parent').removeClass("active_tab");
			}
		);
	

		$j('.ulwrapper .ulwrapper').hover(
			function() {
				$j('.ulwrapper .parent').addClass("active_tab2");
			},

			function() {
				$j('.ulwrapper .parent').removeClass("active_tab2");
			}
		);
	});
