// JavaScript Document

// Fonction clear input text
//<![CDATA[
<!--
function clearText(input){
if (input.defaultValue==input.value)
input.value = ''
}
//-->
//]]>

// Fonction restore input text
//<![CDATA[
<!--
function restoreText(input){
    if (input.value=='')
    input.value = input.defaultValue
  }
//-->
//]]>

// Fonction close moodalbox
//<![CDATA[
<!--
function closeLightbox() {
	MOOdalBox.close();
	MOOdalBox.initAnchors();
}
//-->
//]]>

// Fonction switch tabs
//<![CDATA[
<!--
function switchid(id){
	hideallids();
	showdiv(id);
}

function hideallids(){
	//loop through the array and hide each element by id
	for (var i=0;i<ids.length;i++){
		hidediv(ids[i]);
	}
}

function hidediv(id) {
	//safe function to hide an element with a specified id
	if (document.getElementById) { // DOM3
		document.getElementById(id).style.display = 'none';
	}
	else {
		if (document.layers) { // NS
			document.id.display = 'none';
		}
		else { // IE
			document.all.id.style.display = 'none';
		}
	}
}

function showdiv(id) {
	//safe function to show an element with a specified id

	if (document.getElementById) { // DOM3
		document.getElementById(id).style.display = 'block';
	}
	else {
		if (document.layers) { // NS
			document.id.display = 'block';
		}
		else { // IE
			document.all.id.style.display = 'block';
		}
	}
}

//-->
//]]>


// Fonction open moodalbox onload
//<![CDATA[
<!--
function go(){
	MOOdalBox.open("http://www.fais-le-a-ta-sauce.com/newcomer.html", "", "509 279 external");
}
//-->
//]]>

// Fonction open moodalbox onload
//<![CDATA[
<!--
function formloading(){
	MOOdalBox.open("http://www.fais-le-a-ta-sauce.com/newcomer.html", "", "240 60 external");
}
//-->
//]]>


// Fonction switch bottles
//<![CDATA[
<!--
function switchlink(which) {
     document.getElementById('bottle-barbecue-link').className = 'bottlehighlight-off';
     document.getElementById('bottle-frites-link').className = 'bottlehighlight-off';
     document.getElementById('bottle-hamburger-link').className = 'bottlehighlight-off';
     document.getElementById('bottle-curry-link').className = 'bottlehighlight-off';
     document.getElementById('bottle-pepper-link').className = 'bottlehighlight-off';
     document.getElementById(which).className = 'bottlehighlight-on';
   }
//-->
//]]>











