

$(document).ready(function(){
	$('a.thickbox').nyroModal();
	$("#nyroModalContent").hover(function(){$("#closeBut").hide();}, function(){$("#closeBut").show();});

	$(function(){
		var path = location.pathname.substring(1);
		if ( path ) $('#navigation a[href$="' + path + '"]').attr('class', 'on');
	});
	
	$(".cache").hide();
	//$("#navigation li").toggle(function(){$(this).find("ul").slideDown("fast");},function(){$(this).find("ul").slideUp("fast");})
	

	var obj = null;
	function checkHover() {
		if (obj) {
			obj.find('ul').fadeOut('fast');	
		} //if
	} //checkHover
	
		$('#navigation > li').hover(function() {
			if (obj) {
				obj.find('ul').fadeOut('slow');
				obj = null;
			} //if
	
			$(this).find('ul').fadeIn('slow');
		}, function() {
			obj = $(this);
			setTimeout(
				"checkHover()",
				400);
		});

});
