var isOpenMenu='';
function showUnderMenu(id)
{
	if($('subDiv'+id).visible()==false)
	{
		new Effect.toggle('subDiv'+id,'blind',{duration:0.5,fps:25});
		if(isOpenMenu=='')
		{
			isOpenMenu=id;
		}
		else
		{
			showUnderMenu(isOpenMenu);
			isOpenMenu=id;
		}
	}
	else
	{
		new Effect.toggle('subDiv'+id,'blind',{duration:0.5,fps:25});
		isOpenMenu='';
	}
}

function flashBan()
{
	if(tabImg.length>1)
	{
		if(isActiv<(tabImg.length-1))
		{
			new Effect.Opacity('img'+isActiv, {duration:1.5, fps:25, from:1.0, to:0});
			var next=isActiv+1;
			new Effect.Opacity('img'+next, {duration:1.5, fps:25, from:0, to:1.0});
			isActiv++;
		}
		else
		{
			new Effect.Opacity('img'+isActiv, {duration:1.5, fps:25, from:1.0, to:0});
			new Effect.Opacity('img0', {duration:1.5, fps:25, from:0, to:1.0});
			isActiv=0;
		}
		setTimeout("flashBan()",6000);
	}
}

function showBoatType(idType)
{
	if(idType==1||idType==2)
	{
		if($('ckType'+idType).checked==true)
			$('id_type_spe'+idType).show();
		else
			$('id_type_spe'+idType).hide();
	}
}

function showVenteForm()
{
	if($('isVente').checked==true)
	{
		$('labelLocation').show();
		$('newLocation').show();
		$('selectLocation').show();
		//$('textLocation').show();
		$('labelPrice').show();
		$('textPrice').show();
		//$('labelFuel').show();
		//$('textFuel').show();
		$('labelWater').show();
		$('textWater').show();
	}
	else
	{
		$('labelLocation').hide();
		$('newLocation').hide();
		$('selectLocation').hide();
		//$('textLocation').hide();
		$('labelPrice').hide();
		$('textPrice').hide();
		//$('labelFuel').hide();
		//$('textFuel').hide();
		$('labelWater').hide();
		$('textWater').hide();
	}
}
function showLocationForm()
{
	if($('isLocation').checked==true)
	{
		$('labelPeteS').show();
		$('textPeteS').show();
		$('labelPeteJ').show();
		$('textPeteJ').show();
		$('labelDete').show();
		$('textDete').show();
		$('labelPhiverS').show();
		$('textPhiverS').show();
		$('labelPhiverJ').show();
		$('textPhiverJ').show();
		$('labelDhiver').show();
		$('textDhiver').show();
		$('labelZoneGuests').show();
		$('labelSleeping').show();
		$('textSleeping').show();
		$('labelCruising').show();
		$('textCruising').show();
		$('labelCrewfr').show();
		$('labelCrewen').show();
		$('textCrewfr').show();
		$('textCrewen').show();
		//$('labelConsumption').show();
		//$('textConsumption').show();
		$('labelZete').show();
		$('labelZhiver').show();
		$('textZete').show();
		$('textZhiver').show();
	}
	else
	{
		$('labelPeteS').hide();
		$('textPeteS').hide();
		$('labelPeteJ').hide();
		$('textPeteJ').hide();
		$('labelDete').hide();
		$('textDete').hide();
		$('labelPhiverS').hide();
		$('textPhiverS').hide();
		$('labelPhiverJ').hide();
		$('textPhiverJ').hide();
		$('labelDhiver').hide();
		$('textDhiver').hide();
		$('labelZoneGuests').hide();
		$('labelSleeping').hide();
		$('textSleeping').hide();
		$('labelCruising').hide();
		$('textCruising').hide();
		$('labelCrewfr').hide();
		$('labelCrewen').hide();
		$('textCrewfr').hide();
		$('textCrewen').hide();
		//$('labelConsumption').hide();
		//$('textConsumption').hide();
		$('labelZete').hide();
		$('labelZhiver').hide();
		$('textZete').hide();
		$('textZhiver').hide();
	}
}
function showDiapoImg(url)
{
	$('diapo').src=url;
}

function showBuilder()
{
	$('addBuilder').show()
}
function showLocation()
{
	$('addLocation').show()
}
function showInputKeyword()
{
	$('addKeyword').show()
}
function showMater()
{
	$('addMater').show()
}
