function mainmenu(){

var url=location.href;
var url1=url.indexOf("seven-color");
var url2=url.indexOf("design");
var url3=url.indexOf("house");
var url4=url.indexOf("dictionary");
var url5=url.indexOf("interior-c");

if(url1 != -1){
	document.getElementById("seven").style.color="#FFF";
	document.getElementById("seven").style.background="#CC9900";
}
if(url2 != -1){
	document.getElementById("design").style.color="#FFF";
	document.getElementById("design").style.background="#CC9900";
}
if(url3 != -1){
	document.getElementById("house").style.color="#FFF";
	document.getElementById("house").style.background="#CC9900";
}
if(url4 != -1){
	document.getElementById("dictionarymenu").style.color="#FFF";
	document.getElementById("dictionarymenu").style.background="#CC9900";
}
if(url5 != -1){
	document.getElementById("interior-c").style.color="#FFF";
	document.getElementById("interior-c").style.background="#CC9900";
}
}

window.onload = mainmenu;