
var currentPop = "";

function openPopOver(toPop)
{
	currentPop = toPop;
	$(currentPop).show();
	$("#popOver").fadeIn("normal");
}

function closePopOver()
{
	$(currentPop).fadeOut("normal");
	$("#popOver").fadeOut("normal");
}


