// JavaScript Document

function menuover(over){
	
	over.style.backgroundImage="url(picture/menu_blue.gif)"
	over.style.color="#306"
}
	
function menuout(out){
	
	out.style.backgroundImage=""
	out.style.color="#666"
}


function menuover2(over2){
	
	over2.style.backgroundImage="url(picture/menu2_blue.gif)"
	over2.style.color="#306"
}

function menuout2(out2){
	
	out2.style.backgroundImage="url(picture/menu3_blue.gif)"
	out2.style.color="#666"
}

function menuover3(over3){

	over3.style.color="#306"
}

function menuout3(out3){
	

	out3.style.color="#666"
}


function displaysub(){
	
	document.getElementById("submenu1").style.display="block"
	
}

function hidesub(){
	
		document.getElementById("submenu1").style.display="none"
	
}

function displaysub2(){
	
	document.getElementById("submenu2").style.display="block"
	
}

function hidesub2(){
	
		document.getElementById("submenu2").style.display="none"
	
}

function subover(sover){

	sover.style.backgroundImage="url(picture/subAct_blue.gif)"
	sover.style.color="#006"
}

function subout(sout){
	

	sout.style.backgroundImage=""
	sout.style.color="#333"
}

function topover(tover){
	
	tover.style.backgroundImage="url(picture/top.gif)"
	tover.style.color="#333"
}

function topout(tout){
	
	tout.style.backgroundImage="url(picture/top_act.gif)"
	tout.style.color="#fff"
}