	<!--
	var totaal_pict = 0;
	var pict_nu = 99;
	
	function new_pict (name,link) {
	        pict[totaal_pict] = new pict (name,link);
	        totaal_pict++;
	}
	
	function pict (name,url,link) {
	
	        this.name = name;
	        this.link = link;
	        baseurl = '';
	        this.pict_over = new Image();
	        this.pict_over.src = baseurl + "img/menu/z" + url;
	
	        this.pict_weg = new Image();
	        this.pict_weg.src = baseurl + "img/menu/" + url;
	
	        this.pict_klik = new Image();
	        this.pict_klik.src = baseurl + "img/menu/y" + url;
	}
	new_pict ("","","menu.html");
	new_pict ("WPL Images","1.gif","wplimages.phtml");
	new_pict ("Photo CDs","2.gif","photocds.phtml");
	new_pict ("Video Collections","3.gif","vcollections.phtml");
	new_pict ("Photo Locations","4.gif","location.phtml");
	new_pict ("Nature Shop","5.gif","shop.phtml");
	new_pict ("About this site","6.gif","about.phtml");
	new_pict ("Contact","7.gif","contact.phtml");
	new_pict ("Links","8.gif","links.phtml");
	
	defaultStatus="World Photolocations";
	
	
	function pict_over(num) {
	        if (pict_nu != num) {
	        	document.images[num].src = pict[num].pict_over.src;
	        }
	}
	
	function pict_klik(num) {
	        if (pict_nu != 99) {
	        document.images[pict_nu].src = pict[pict_nu].pict_weg.src;
	        }
	        pict_nu = num;
	        document.images[num].src = pict[num].pict_klik.src;
	}
	
	function pict_weg(num) {
	        if (pict_nu != num) {
	                document.images[num].src = pict[num].pict_weg.src;
	        }
	        self.status='World Photolocations';
	}
	//-->
