function mouseon() 
{ 
var wSrc = window.event.srcElement; 
wSrc.style.color= "#333333"; 
wSrc.style.backgroundColor= "#E6E6E6";
} 

function mouseout()
 {
  var wSrc = window.event.srcElement; 
 wSrc.style.color ="#243271"; 
 wSrc.style.backgroundColor= "#CFD7EB";
} 
function mouseon2()
 {
  var wSrc = window.event.srcElement; 
 wSrc.style.color ="#243271";
} 

function menuclick(wSrcID) { window.parent.location=wSrcID; } 

function mouseout2()
 {
  var wSrc = window.event.srcElement; 
 wSrc.style.color ="#333333"; 
 wSrc.style.backgroundColor= "#ffffff";
} 
