// JavaScript Document
function showLayer(str)
{
	if($(str).is(':hidden'))
	{
		$('.popup:visible').fadeOut("normal");
	}	
	$(str).fadeIn("normal");
}