var obj = null;

function checkHover() {
	if (obj) {
		obj.find('ul').fadeOut('fast');	
	} //if
} //checkHover

$(document).ready(function() {
	$('#Nav > li').hover(function() {
		$(".breadcrumb").fadeTo("fast", 0.20);
		if (obj) {
			obj.find('ul').fadeOut('fast');
			obj = null;
		} //if
		
		$(this).find('ul').fadeIn('fast');
	}, function() {
		$(".breadcrumb").fadeTo("slow", 1.0);
		obj = $(this);
		setTimeout(
			"checkHover()",
			400);
	});
});

/* in temporary use */
$(document).ready(function(){
    $('#inline-list > li img').hover(function() {
      $(this).fadeTo("slow", 0.40);
	},function() {
      $(this).fadeTo("slow", 1);
	});
});

