////////////////////////////////////////////////
// table.js                                   //
////////////////////////////////////////////////

$(function(){
$("#cTable td").hover(function(){
$(this).css("backgroundColor","#f1f1f1");
}, function(){
$(this).css("backgroundColor","");
});

$("table.typeD tr").hover(function(){
$(this).css("backgroundColor","#f8f8f8");
}, function(){
$(this).css("backgroundColor","");
});
});

