function Startmenu() {
	
	if (!document.all) return;
	
	tags = document.all.tags("TD");
	for (var i=0; i<tags.length; i++) {
		if (tags[i].className == "taboff" || tags[i].className == "tabon" || tags[i].className == "tabredoff" || tags[i].className == "tabredon" || tags[i].className == "tabgreenoff" || tags[i].className == "tabgreenon") {
			tags[i].onclick = menuclick;
			tags[i].onmouseover = menuover;
			tags[i].onmouseout = menuout;
		}
	}
	
	TempBackgroundImage = null;
	TempBackgroundImageRed = null;
	TempBackgroundImageGreen = null;
	
	function menuover() {
		if (this.className == "taboff") {
			TempBackgroundImage = this.style.backgroundImage;
			this.style.backgroundImage = "url(img/menua/tloon.gif)";
		}
		this.style.cursor = "hand";
	}

	function menuout() {
		if (this.className == "taboff")
			this.style.backgroundImage = TempBackgroundImage;
			if (this.className == "tabredoff")
			this.style.backgroundImage = TempBackgroundImageRed;
			if (this.className == "tabgreenoff")
			this.style.backgroundImage = TempBackgroundImageGreen;
		
	}
	
	function menuclick() {
		    this.all.tags("A")[0].click();
		    if (this.className == "taboff")
			this.style.backgroundImage = TempBackgroundImage;
			if (this.className == "tabredoff")
			this.style.backgroundImage = TempBackgroundImageRed;
			if (this.className == "tabgreenoff")
			this.style.backgroundImage = TempBackgroundImageGreen;
			
			
	}
		
}
