var obj = null;

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

function formatItem(row) {
	return row[0] + "<br />";
	//return row[0] + "<br />*<i>" + row[1] + "</i>";
}

$(document).ready(function() {
	$('.Nav > li').hover(function() {
		if (obj) {
			obj.find('ul').fadeOut('fast');
			obj.find('.bulleSsmenu').fadeOut('fast');
			obj = null;
		} //if
		
		$(this).find('ul').fadeIn('fast');
		$(this).find('.bulleSsmenu').fadeIn('fast');
	}, function() {
		obj = $(this);
		setTimeout(
			"checkHover()",
			1);
	});
	
	$(function() {
        $('a.lightbox').lightBox();
    });
});

