/*********************************************************************************/
/* fotó layer                                                                     \
/*********************************************************************************/
function showOnMap(className,mapLayer,mapShadowLayer,map_closer)
{	
	this.className = className;
	this.mapLayer = $(mapLayer);
	this.mapShadowLayer = $(mapShadowLayer);		
	this.map_closer = $(map_closer);
	this.mapOpen = false;
	this.init();
}

showOnMap.prototype.init = function()
{
	var that = this;	
	this.map_closer.onclick = function()
	{
		setSelectsVisibility('show');
		that.mapLayer.style.visibility = 'hidden';
	}				
}

//Selectek elrejtése
function setSelectsVisibility(todo)
{
	var selects_to_hide = document.body.getElementsByTagName('select');
	for(var i=0; i<selects_to_hide.length; i++)
	{
		if(todo == 'hide')
		{
			$(selects_to_hide[i]).style.visibility = 'hidden';
		}
		else
		{
			$(selects_to_hide[i]).style.visibility = 'visible';
		}
	}
}

/*********************************************************************************/
/* fotó layer vége                                                                \
/*********************************************************************************/
