function initArray() {	this.length = initArray.arguments.length;	for (var i = 0; i < this.length; i++)	this[i+1] = initArray.arguments[i];}function getWelcomeMsgOpening(){	var nu = new Date();	if (nu.getHours() >= 18)		var welkom = ("Goedeavond, ");	else if (nu.getHours() >= 12)		var welkom = ("Goedemiddag, ");	else if (nu.getHours() >= 6)		var welkom = ("Goedemorgen, ");	else		var welkom = ("Goedenacht, ");	return welkom + "en welkom op onze site." + " ";}function getWelcomeMsgEnding(){	var nu = new Date();	if (nu.getHours() >= 18)		var welkom = ("avond,");	else if (nu.getHours() >= 12)		var welkom = ("middag,");	else if (nu.getHours() >= 6)		var welkom = ("ochtend,");	else		var welkom = ("nacht,");	return "Wij wensen u nog een prettige " + welkom;}function switchFooter(page){	var iconPath = "images/icons/";	var bottomPath = "images/bottom/";		switch(page){		case "auto":			document.getElementById('footer_image_icon').src = iconPath + "IconsAuto.gif";			document.getElementById('footer_image_bottom').src = bottomPath + "BottomAuto.gif";			break;		case "garage":			document.getElementById('footer_image_icon').src = iconPath + "IconsGarage.gif";			document.getElementById('footer_image_bottom').src = bottomPath + "BottomGarage.gif";			break;		case "verhuur":			document.getElementById('footer_image_icon').src = iconPath + "IconsVerhuur.gif";			document.getElementById('footer_image_bottom').src = bottomPath + "BottomVerhuur.gif";			break;		case "route":			document.getElementById('footer_image_icon').src = iconPath + "IconsRoute.gif";			document.getElementById('footer_image_bottom').src = bottomPath + "BottomRoute.gif";			break;		case "email":			document.getElementById('footer_image_icon').src = iconPath + "IconsEmail.gif";			document.getElementById('footer_image_bottom').src = bottomPath + "BottomEmail.gif";			break;		case "welkom":			document.getElementById('footer_image_icon').src = iconPath + "IconsWelkom.gif";			document.getElementById('footer_image_bottom').src = bottomPath + "BottomWelkom.gif";			break;		case "foto":			document.getElementById('footer_image_icon').src = iconPath + "IconsFoto.png";			document.getElementById('footer_image_bottom').src = bottomPath + "BottomFoto.png";			break;		default:			document.getElementById('footer_image_icon').src = iconPath + "IconsWelkom.gif";			document.getElementById('footer_image_bottom').src = bottomPath + "BottomWelkom.gif";			break;						}}
