
$(function() {
// OPACITY OF BUTTON SET TO 50%
$(".tbl td img").css("opacity","1.0");
$(".tbl td .bot").css("opacity","1.0");		
// ON MOUSE OVER
$(".tbl td").hover(function () {
										  
// SET OPACITY TO 100%
(jQuery(this).find("img")).stop().animate({
opacity: 1.0
}, "slow");
(jQuery(this).find(".bot")).stop().animate({
opacity: 1.0,

}, "slow");
},
		
// ON MOUSE OUT
function () {
			
// SET OPACITY BACK TO 50%
(jQuery(this).find("img")).stop().animate({
opacity: 1.0
}, "slow");
(jQuery(this).find(".bot")).stop().animate({
opacity: 1.0,
}, "slow");
});
});
