// JavaScript Document

function loadPopUp(name){
	$("#popup").load("popup/"+name+".php");
	$("#popup").fadeIn("fast");
//	alert(name);
}

function closePopUp(){
	$("#popup").fadeOut("fast");	
}


closeTimer = null;
var show = 0;
function showdrop(n){
	$("#"+n+" ol").fadeIn("fast");
	show=1;
	cancel_close();
}

function no_showdrop(n){
	closeTimer = window.setTimeout(closeit, 560);
	show=0;
	function closeit(){
		if(show==0){
			$("#"+n+" ol").fadeOut("fast");
		}
	}
}

function cancel_close(){
	if(closeTimer!=null){
		show=1;
		window.clearTimeout(closeTimer);
		closeTimer = null;
	}
}