$(document).ready(function () {

$(".navigationcell").mouseover(function(){


$(this).css("backgroundColor","#FF9900");
$(this).css("color","black");
$(this).css("height","25px");
});

$(".navigationcell").mouseout(function(){


$(this).css("backgroundColor","");
$(this).css("color","#FF6600");

});





});
