/* * */$(document).ready(function(){// Pavel: REMOVE EXPANDING CLICKED MENU ITEM SUBMENU		try {	//$("#header").append('<p><a href="#" id="print" onclick="togglePrint(\'screenStyle\', \'imgPrint\', this)">Print Version</a></p>');	/*<div class="print"><img src="../graphics/icon_print.gif" alt="Print this page" width="100" height="21" style="float:right;" onclick="togglePrint('screenStyle', 'imgPrint', this)"></div>*/				$("#print").click(function(){		$(document).print();		return false;	});/*	 Pavel: removed this to stop screen flicking	$("#menu ul:not([class*='current'])").hide(); // pavel//		alert(	$("#menu ul").length);//		alert(	$("#menu ul:not([class*='current'])").length);		//	$("#menu ul").not("#menu ul.current").hide(); // original	//	$("#menu>li>ul").not("#menu ul.current").hide(); // original	$("#menu>li>a").click(function(){		if($(this).siblings("#menu ul").length > 0){			$("#menu ul").not($(this).siblings("#menu ul")).hide("slow");			$(this).siblings("#menu ul").slideToggle();			var url = $(this).attr("href");			setTimeout(function(){window.location = url;}, 1000);			return false;		}	});*/		$("ul.photos a").mouseover(function(){		$(this).siblings("p").show();		$(this).siblings(".name-bkg").show();		$(this).parent().css("z-index", "20");	});		$("ul.photos a").mouseout(function(){		$(this).siblings("p").hide();		$(this).siblings(".name-bkg").hide();		$(this).parent().css("z-index", "1");	});	$("ul.photos p").mouseover(function(){		$(this).show();		$(this).siblings(".name-bkg").show();		$(this).parent().css("z-index", "20");	});	$("ul.photos p").mouseout(function(){		$(this).hide();		$(this).siblings(".name-bkg").hide();		$(this).parent().css("z-index", "1");	});	$("ul.photos .name-bkg").mouseover(function(){		$(this).show();		$(this).siblings("p").show();		$(this).parent().css("z-index", "20");	});	$("ul.photos .name-bkg").mouseout(function(){		$(this).hide();		$(this).siblings("p").hide();		$(this).parent().css("z-index", "1");	});			$("ul.flags a").mouseover(function(){		$(this).siblings("p").show();		$(this).siblings(".name-bkg").show();		$(this).parent().css("z-index", "20");	});		$("ul.flags a").mouseout(function(){		$(this).siblings("p").hide();		$(this).siblings(".name-bkg").hide();		$(this).parent().css("z-index", "1");	});	$("ul.flags p").mouseover(function(){		$(this).show();		$(this).siblings(".name-bkg").show();		$(this).parent().css("z-index", "20");	});	$("ul.flags p").mouseout(function(){		$(this).hide();		$(this).siblings(".name-bkg").hide();		$(this).parent().css("z-index", "1");	});	$("ul.flags .name-bkg").mouseover(function(){		$(this).show();		$(this).siblings("p").show();		$(this).parent().css("z-index", "20");	});	$("ul.flags .name-bkg").mouseout(function(){		$(this).hide();		$(this).siblings("p").hide();		$(this).parent().css("z-index", "1");	});} catch(e) {};});