﻿// JScript File
function highlightRow(row,toggle)
{
    //alert("Test");
    if (toggle) {
        row.style.backgroundColor = "#E8A713";
    } else {
        row.style.backgroundColor = "#006BB7";
    }
}


function menuHover(theImage,toggle) {
//    alert(theImage.src);
    var rollText = "_rollover";
    var imgType = ".gif";
    
    if (toggle == 1) {
        theImage.src = theImage.src.replace(imgType,rollText + imgType);
    } else {
        theImage.src = theImage.src.replace(rollText + imgType,imgType);
    }
    
    //alert(theImage.src);
}
