function ShowHideDiv(divid,v,type)
{
	var state,div;
	HideAllDivs(type);
		div = 	eval("document.getElementById('div"+divid+"')");
		div.style.display = 'block';
		div.style.visibility = 'visible';
	if(divid==1)
	{
				document.getElementById('img1').src = 'images/tab_gunes_on.gif';
	}
	else
	{
				document.getElementById('img2').src = 'images/tab_kayak_on.gif';		
	}
}
function HideAllDivs(type)
{
	if(type==0)
	{
		document.getElementById('div1').style.display = 'none';
		document.getElementById('div2').style.display = 'none';
		document.getElementById('img1').src = 'images/tab_gunes_off.gif';	
		document.getElementById('img2').src = 'images/tab_kayak_off.gif';
	}
}

function menuYeri()
{
	
	if (window.innerWidth || window.innerHeight){ 
	docwidth = (window.innerWidth / 2) + 293; 
	} 
	//IE Mozilla 
	if (document.body.clientWidth || document.body.clientHeight){ 
	docwidth = (document.body.clientWidth / 2) + 293; 
	} 
	document.getElementById('Layer2').style.left = docwidth;

	
	
	
}
