/*
		WWW.EKEUKEN.NL
		============================================================
		(c)2005 by MediaMonks; Interactive Art, rocco@mediamonks.com
		
*/

butOn = new Array(8);
butOff = new Array(8);
butOn[1]= new Image; butOn[1].src = "./images/tab_index_w.gif";
butOn[2]= new Image; butOn[2].src = "./images/tab_showroom_w.gif";
butOn[3]= new Image; butOn[3].src = "./images/tab_service_w.gif";
butOn[4]= new Image; butOn[4].src = "./images/tab_financiering_w.gif";
butOn[5]= new Image; butOn[5].src = "./images/tab_contact_w.gif";
butOn[6]= new Image; butOn[6].src = "./images/tabs_calc_white.gif";
butOn[7]= new Image; butOn[7].src = "./images/tabs_inb_white.gif";
butOn[8]= new Image; butOn[8].src = "./images/tabs_aanb_white.gif";

butOff[1]= new Image; butOff[1].src = "./images/tab_index_b.gif";
butOff[2]= new Image; butOff[2].src = "./images/tab_showroom_b.gif";
butOff[3]= new Image; butOff[3].src = "./images/tab_service_b.gif";
butOff[4]= new Image; butOff[4].src = "./images/tab_financiering_b.gif";
butOff[5]= new Image; butOff[5].src = "./images/tab_contact_b.gif";
butOff[6]= new Image; butOff[6].src = "./images/tabs_calc_blue.gif";
butOff[7]= new Image; butOff[7].src = "./images/tabs_inb_blue.gif";
butOff[8]= new Image; butOff[8].src = "./images/tabs_aanb_blue.gif";

function rollOver(but,butname)
{
	document[butname].src = butOn[but].src;
}

function rollOut(but,butname)
{
	document[butname].src = butOff[but].src;
}

/*
	FAQ EXPANSION SCRIPT
*/

function expandit(curobj) {
	if (curobj.style.display=="none") {
	    curobj.style.display="";
	} else {
		curobj.style.display="none";
	}
}

/*
	POPUPS
*/

function openPhoto(name,width,Height) {
	var popupwidth = width;
	var popupheight = Height;
	var leftstart = (screen.width/2) - (popupwidth/2);
	var topstart = (screen.height/2) - (popupheight/2);
	var properties = "width="+popupwidth+", height="+popupheight+", left="+leftstart+", top="+topstart+", toolbar=no, titlebar=no, title=0, location=no,scrollbars=no,status=no,resizable=no";
	var photo = "http://www.ekeuken.nl/pages/bigphoto.php?i="+name+"&w="+width+"&h="+Height;
	window.open(photo,'photo',properties);
}




	function openRoute() {
		
		var popupwidth = 644;
		var popupheight = 458;
	
		var filename = 'http://www.ekeuken.nl/templates/route.html';			
		var winname = 'Routeplanner';
		
		var leftstart = (screen.width/2) - (popupwidth/2);
		var topstart = (screen.height/2) - (popupheight/2);
		
		var properties = "";
		
		properties +=	"width = " + popupwidth + ",";
		properties += 	"height = " + popupheight + ",";
		properties += 	"top = " + topstart + ",";
		properties += 	"left = " + leftstart + ",";
		properties += 	"resizable = false,";
		properties += 	"scrollbars = no,";		
		properties += 	"toolbar = no,";
		properties += 	"menubar = no,";
 		properties += 	"location = no,";
 		properties += 	"status = yes,";  		/* mozilla always shows statusbar for security reasons */
 		properties += 	"directories = no,"; 
 		properties += 	"fullscreen = no,"; 	/* ie only! */
 		properties += 	"dependent = no"; 		/* ns4 only! */

		window.open(filename,winname,properties);
	}
