jQuery(function($){
	/* if(obj) {
		alert("Object still exist ... ");	
	}
	var obj = null;
	function checkHover() {
		if (obj) {
			obj.find('ul').fadeOut('fast');	
		} //if
	} //checkHover

	$(document).ready(function() {
		$('.secLevMenu ul.menu_level_1 li').hover(function() {
			if (obj) {
				obj.find('ul').fadeOut('fast');
				obj = null;	
			} //if
		$(this).find('ul').fadeIn('fast');	
		}, function() {
			obj = $(this);
			setTimeout(checkHover, 400);
		});
	}); */
	$(document).ready(function(){
    $("div.secLevMenu ul.menu_level_1 li.menu-1").hover(
        function() {
			$("ul", this).show();
		}, 
        function() {
			$("ul", this).hide();
		} 
    );
    /* if (document.all) {
        $("#nav-one li").hoverClass ("sfHover");
    } */
});

}); 
