
var myTab = "Overview";

//alert(myTab);

<!-- function currentPage() { -->

	if (document.title.indexOf('tab1') != -1) {
		//alert("GOT HERE");
		myTab = "tab1";
	} else if (document.title.indexOf(' - Features') != -1) {
		myTab = "Features";
	} else if (document.title.indexOf(' - Tour') != -1) {
		myTab = "Tour";
	} else if (document.title.indexOf(' - Screenshots') != -1) {
		myTab = "Screenshots";
	} else if (document.title.indexOf(' - Experiments') != -1) {
		myTab = "Experiments";
	} else if (document.title.indexOf(' - Resources') != -1) {
		myTab = "Resources";
	} else if (document.title.indexOf(' - Compare') != -1) {
		myTab = "Compare";
	} else if (document.title.indexOf(' - Manuals') != -1) {
		myTab = "Manuals";
	} else {
		myTab = "Overview";
	}	
	
	//alert(myTab);
	
	/* var myElement2 = document.getElementById('tabRule');
	myElement2.style.zIndex = "100";
	myElement2.style.position = "relative";
	myElement2.style.borderBottom = "1px solid #AE9D76"; #CC0000 */
	
	var myElement = document.getElementById(myTab);
	if(myElement) myElement.style.color = "#CC6600";
	if(myElement) myElement.style.backgroundImage = "url(/assets/theme1/images/misc/onButton.jpg)";
	if(myElement) myElement.style.borderBottom = "1px solid #FFFFFF"; <!-- "4px solid #AE9D76" -->
	if(myElement) myElement.style.zIndex = "4000";
	if(myElement) myElement.style.position = "relative";
	if(myElement) myElement.style.marginLeft = "-2px";
	
	
	
<!-- } -->


<!-- window.onload = currentPage; -->

	function hover(link) {
		var myElement = document.getElementById(link);
		if(myElement) myElement.style.color = "#CC6600";
		
		//alert(currentPage);
	}
	
	function hoverReset(link) {
		if (link != myTab) {
			var myElement = document.getElementById(link);
			myElement.style.color = "#3F4E73";
		}
	}

