$(document).ready(function() {
	$('td.leftMnuBtn').mouseover(function() {
	   $(this).css({'font-style': 'italic','font-weight' : 'bold'});
	});
	$('td.leftMnuBtn').mouseout(function() {
	   $(this).css({'font-style': 'normal','font-weight' : 'normal'});
	});
});


