var imenu_tab1 = document.getElementById("menu_tab1");
var imenu_tab2 = document.getElementById("menu_tab2");
var imenu_tab21 = document.getElementById("menu_tab21");
var imenu_tab3 = document.getElementById("menu_tab3");
var imenu_tab4 = document.getElementById("menu_tab4");
var imenu_tab5 = document.getElementById("menu_tab5");

var imenu_tab1_box = document.getElementById("menu_tab1_box");
var imenu_tab2_box = document.getElementById("menu_tab2_box");
var imenu_tab21_box = document.getElementById("menu_tab21_box");
var imenu_tab3_box = document.getElementById("menu_tab3_box");
var imenu_tab4_box = document.getElementById("menu_tab4_box");
var imenu_tab5_box = document.getElementById("menu_tab5_box");



function selectTab1() { 
	
	imenu_tab1.style.color='#330000';
		
}

function deselectTab1() {
		
	imenu_tab1.style.color='#ff6600';
		
}

function selectTab2() { 
	
	imenu_tab2.style.color='#330000';	
}

function deselectTab2() {
		
	imenu_tab2.style.color='#ff6600';	
}


function selectTab21() { 
	
	imenu_tab21.style.color='#330000';	
}

function deselectTab21() {
		
	imenu_tab21.style.color='#ff6600';	
}

function selectTab3() { 
	
	imenu_tab3.style.color='#330000';
		
}

function deselectTab3() {
		
	imenu_tab3.style.color='#ff6600';
		
}

function selectTab4() { 
	
	imenu_tab4.style.color='#330000';
		
}

function deselectTab4() {
		
	imenu_tab4.style.color='#ff6600';
		
}


function selectTab5() { 
	
	imenu_tab5.style.color='#330000';
		
}

function deselectTab5() {
		
	imenu_tab5.style.color='#ff6600';
		
}




imenu_tab1_box.onmouseover = function() { 
	
	selectTab1();
	this.style.cursor='pointer';

	}


imenu_tab1_box.onmouseout = function() { 
		
	deselectTab1();
		
}


imenu_tab2_box.onmouseover = function() { 
	
	selectTab2();
	this.style.cursor='pointer';

	}


imenu_tab2_box.onmouseout = function() { 
		
	deselectTab2();
		
}

imenu_tab21_box.onmouseover = function() { 
	
	selectTab21();
	this.style.cursor='pointer';

	}


imenu_tab21_box.onmouseout = function() { 
		
	deselectTab21();
		
}


imenu_tab3_box.onmouseover = function() { 
	
	selectTab3();
	this.style.cursor='pointer';

	}


imenu_tab3_box.onmouseout = function() { 
		
	deselectTab3();
		
}

imenu_tab4_box.onmouseover = function() { 
	
	selectTab4();
	this.style.cursor='pointer';

	}


imenu_tab4_box.onmouseout = function() { 
		
	deselectTab4();
		
}


imenu_tab5_box.onmouseover = function() { 
	
	selectTab5();
	this.style.cursor='pointer';

	}


imenu_tab5_box.onmouseout = function() { 
		
	deselectTab5();
		
}

