// JavaScript Document
// mouse over div and list style

function mouseover(thediv) 
{ 
document.getElementById(thediv).style.backgroundColor='#fff2bf'; 
document.getElementById(thediv).style.cursor='pointer'; 
} 
function mouseout(thediv) 
{ 
document.getElementById(thediv).style.backgroundColor='#ffffff'; 
}
