//////////////////////////////////////////////////////////////							//////	Menu-javascript					//////	Written by Daniel Wahlgren			//////	For www.tanli.com and associated sites only.	//////							//////////////////////////////////////////////////////////////var chosen, menuitems, menuon, menuoff;menuitems = 7;	// Set the number of menuitems here. If you are not sure then use a aproximated number, better too high than too low.menuon = new Image();menuon.src = "pics/bdot_on.jpg";menuoff = new Image();menuoff.src = "pics/bdot.jpg";/* if ( parent.location.href == self.location.href)	{	parent.location.href = 'index.html?page=' + self.location.href;	}*/		function reset()	{	for(var i=0; i < menuitems; i++) 		{		document.images['menuitem' + i].src = menuoff.src		}	}	function choose(menu)	{	reset();	document.images['menuitem' + menu].src = menuon.src	chosen = menu	}function over(menu)	{	document.images['menuitem' + menu].src = menuon.src	}function back(menu)	{	if(menu == chosen)		{		//Nothing happens		}		else		{		document.images['menuitem' + menu].src = menuoff.src		}	}