pic1 = new Image();
pic1.src="/img/ico/lh20.gif";
pic2 = new Image();
pic2.src="/img/ico/rh20.gif";
pic3 = new Image();
pic3.src="/img/ico/lh30.gif";
pic4 = new Image();
pic4.src="/img/ico/rh30.gif";
function hover(id1, id2, id3)
{
document.getElementById(id1).style.backgroundColor = '#a0a0a0';
document.getElementById(id2).setAttribute('src','/img/ico/lh20.gif');
document.getElementById(id3).setAttribute('src','/img/ico/rh20.gif');
}
function antihover(id1,id2,id3)
{
document.getElementById(id1).style.backgroundColor = '#666';
document.getElementById(id2).setAttribute('src','/img/ico/l20.gif');
document.getElementById(id3).setAttribute('src','/img/ico/r20.gif');
}
function titleh()
{
document.getElementById("title").style.background = '#a0a0a0 url(/img/ico/lh30.gif) no-repeat';
document.getElementById("titlep").style.backgroundImage = 'url(/img/ico/rh30.gif)';
}
function notitle()
{
document.getElementById("title").style.background = '#666 url(/img/ico/l30.gif) no-repeat';
document.getElementById("titlep").style.backgroundImage = 'url(/img/ico/r30.gif)';
}