// JScript File
function buttonRollIn(target)
{
    document.getElementById(target).style.backgroundColor="#F1DB81";
    document.getElementById(target).style.border="solid #663366 1px"; 
}
function buttonRollOut(target)
{
    document.getElementById(target).style.backgroundColor="Transparent";
    document.getElementById(target).style.border="solid #663366 1px";  
} 