// JavaScript Document
function mousehover(id1,id2,id3,id4)
{
var x1=document.getElementById(id1);
var x2=document.getElementById(id2);
var x3=document.getElementById(id3);
var x4=document.getElementById(id4);


//x.style.className="menu_hover"; 
//x.style.backgroundImage="url(images/bg_3.jpg)"; C5F05A
x1.style.background='#E76315';
x4.style.background='#E76315';
x3.style.background='#3673A9';
x2.style.background='url(images/home_6.jpg)  no-repeat center';
}
function mouseout(id1,id2,id3,id4)
{
var x1=document.getElementById(id1);
var x2=document.getElementById(id2);
var x3=document.getElementById(id3);
var x4=document.getElementById(id4);


//x.style.className="menu_hover"; 
//x.style.backgroundImage="url(images/bg_3.jpg)"; C5F05A
x1.style.background='#1E598E';
x4.style.background='#1E598E';
x3.style.background='#1E598E';
x2.style.background='#1E598E';
}
/////////////////////////////////////
