// JavaScript Document
var root = "http://www.bouwpuntdewitte.be/";
function menuHover(i,j){
	var root = "http://www.bouwpuntdewitte.be/";
	if(i==1) {
		if(j==1) document.getElementById("menuHome").style.backgroundImage="url("+root+"images/menuCenterHover.png)";
		if(j==2) document.getElementById("menuPromo").style.backgroundImage="url("+root+"images/menuCenterHover.png)";
		if(j==3) document.getElementById("menuCatalogus").style.backgroundImage="url("+root+"images/menuCenterHover.png)";
		if(j==4) document.getElementById("menuVacature").style.backgroundImage="url("+root+"images/menuCenterHover.png)";
		if(j==5) document.getElementById("menuBestellen").style.backgroundImage="url("+root+"images/menuCenterHover.png)";
		if(j==6) document.getElementById("menuContact").style.backgroundImage="url("+root+"images/menuCenterHover.png)";
	}
	if(i==0) {
		if(j==1) document.getElementById("menuHome").style.backgroundImage="url("+root+"images/menuCenter.png)";
		if(j==2) document.getElementById("menuPromo").style.backgroundImage="url("+root+"images/menuCenter.png)";
		if(j==3) document.getElementById("menuCatalogus").style.backgroundImage="url("+root+"images/menuCenter.png)";
		if(j==4) document.getElementById("menuVacature").style.backgroundImage="url("+root+"images/menuCenter.png)";
		if(j==5) document.getElementById("menuBestellen").style.backgroundImage="url("+root+"images/menuCenter.png)";
		if(j==6) document.getElementById("menuContact").style.backgroundImage="url("+root+"images/menuCenter.png)";
	}
}

function menuClick(i){
	if(i==6) window.location = root+"contact.php";
	if(i==1) window.location=root+"index.php";
	if(i==2) window.location=root+"promoties";
	if(i==3) window.location=root+"catalogus";
	if(i==4) window.location = root+"vacature.php";
	if(i==5) window.location = root+"bestellen.php";
	
}

function showPromotieMenu(i){
	if(i==0) document.getElementById("promotieMenu").style.visibility="hidden";
	if(i==1) document.getElementById("promotieMenu").style.visibility="visible";
}

function showCatalogusMenu(i){
	if(i==0) document.getElementById("catalogusmenu").style.visibility="hidden";
	if(i==1) document.getElementById("catalogusmenu").style.visibility="visible";
}
