﻿function load()
{

$(function() {
$(".hlist ul a").css("opacity","0.5");
$("#row").css("opacity","1.0");

// ON MOUSE OVER
$(".hlist ul a").hover(function () {

// SET OPACITY TO 30%
$(this).stop().animate({
opacity: 1.0
}, "slow");
},

// ON MOUSE OUT
function () {

// SET OPACITY BACK TO 100%
$(this).stop().animate({
opacity: 0.5 //this part might need to be changed
}, "slow");
});

});
}
