/*var obj = null;

function checkHover () {
	if (obj) {
		obj.find('ul').fadeOut('fast');
	} // if
}  // checkHover

$(document).ready(function() {
	$('#menu ul.box_menu > 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() {
	$('ul > li').hover(function() {
		if (obj){
			obj.find('ul').fadeOut('slow');
			obj = null;
		} // if
		$(this).find('ul').fadeIn('slow');
	}, function() {
		obj = $(this);
		setTimeout("checkHover()", 400);
	});
});

$(document)(function(){
	$('ul > li').hover(function() {
		if (obj){
			obj.find('ul').fadeOut('slow');
			obj = null;
		} // if
		$(this).find('ul').fadeIn('slow');
	}, function() {
		obj = $(this);
		setTimeout("checkHover()", 400);
    });
}); 
*/		
