// JavaScript Document

//FAQ Q & A display functions
answer=null;
function displayAnswer(theQ){
	//hide any previous answers if still showing
	if (answer!=null){
		lastAnswer=answer;
		document.getElementById(lastAnswer).style.visibility="hidden";
		}
	
	//show answer
	answer="answer"+theQ;
	document.getElementById(answer).style.visibility="visible";
	
}

function closeAnswer(theQ){
	answer="answer"+theQ;
	document.getElementById(answer).style.visibility="hidden";
}

//MAIN NAV roll over functions
function mouseover(theBttn){
	
	document.getElementById(theBttn).style.backgroundColor='#d29948';
	
	}

function mouseout(theBttn){
	
	document.getElementById(theBttn).style.backgroundColor='#323b4d';
	
	} 
	
//show/hide 'Where do I find my Model Number' window

function showManual(){
document.getElementById('modelnum').style.visibility="visible";

}
function hideManual(){
document.getElementById('modelnum').style.visibility="hidden";

}

function  blankField(field){
field.value="";
	}
function toggleLanguage(language){
	 
	document.cookie = 'language=' + language + '; expires=Thu, 2 Aug 2038 20:47:11 UTC; path=/'
	if(language=="English"){
		window.location.href = 'http://www.broilkingbbq.com/2010/index.php';
		}else{
			window.location.href = 'http://www.broilkingbbq.com/2010/_fr/index.php';}
	}
	
	
	
	
	
	
	
