function loadTableOvers()
{
    $('.linkRow').bind('mouseover', function() {
        $(this).css( { backgroundColor:"#ace" });
    });
    $('.linkRow').bind('mouseout', function() {
        $(this).css({ backgroundColor:"#ffffff" });
    });
}

function goThere(a)
{
   window.location.href=a;
}