function basicShow()
{
	if ($(this).text()=="Βασικά Off")
	{
		$("div.map dl.basic_items").fadeOut("slow");
		$(this).text("Βασικά On");
	}
	else
	{
		$("div.map dl.basic_items").fadeIn("slow");
		$(this).text("Βασικά Off");
	}
	return false;
}
function photoShow()
{
	if ($(this).text()=="Φωτογραφίες Off")
	{
		$("div.map dl.basic_imagies").fadeOut("slow");
		$(this).text("Φωτογραφίες On");
	}
	else
	{
		$("div.map dl.basic_imagies").fadeIn("slow");
		$(this).text("Φωτογραφίες Off");
	}
	return false;
}
function showToolTip()
{
	var pitem=$(this).parent();
	var item=$(this).parent().next();
	p=pitem.position();
	var cx=p.left;
	var cy=p.top;
	if (animation)
	{
		animation=false;
		item.fadeIn("slow",function (){animation=true;});
		var wi=item.width();
		var he=item.height();
		if ((cx+60+wi)>540)
			cx=cx-20-wi;
		if (cy>200)
			cy=cy-(item.height()+30);
		else
			cy=cy+pitem.height()+20;
		pitem.css("z-index","12");
		item.css("left",cx);
		item.css("top",cy);
	}
}
function hideToolTip()
{
	$(this).parent().css("z-index","11");
	$(this).parent().next().fadeOut("slow",function (){animation=true;});
}
function showMapGuide()
{
	$("dl.map_guide dd").fadeIn("slow");
}
function hideMapGuide()
{
	$("dl.map_guide dd").fadeOut("slow");
}
