$(document).ready(
function () {
$('#menu').css('opacity', 0.5);
$('.menua')
.bind('mouseover',function(event) {
   var cella = 'p' + event.target.id.substring(1);
   $("td#" + cella).addClass('fochia');
})
.bind('mouseout',function(event) {
	var cella = 'p' + event.target.id.substring(1);
	$("td#" + cella).removeClass('fochia');
});
//$("#thmb1").hide();
//$("#thmb2").hide();
//$("#thmb3").hide();
$("#sez1").bind('mouseover',function(event) {
   $("#sez1").css('cursor', 'pointer');
});
$("#sez1").bind('mouseout',function(event) {
   $("#sez1").css('cursor', 'default');
});
$("#sez2").bind('mouseover',function(event) {
   $("#sez2").css('cursor', 'pointer');
});
$("#sez2").bind('mouseout',function(event) {
   $("#sez2").css('cursor', 'default');
})
$("#sez3").bind('mouseover',function(event) {
   $("#sez3").css('cursor', 'pointer');
});
$("#sez3").bind('mouseout',function(event) {
   $("#sez3").css('cursor', 'default');
})
$("#sez1").bind('click',function(event) {
$("#thmb1").show("slow");
$("#thmb2").hide();
$("#thmb3").hide();
});
$("#sez2").bind('click',function(event) {
$("#thmb1").hide();
$("#thmb2").show("slow");
$("#thmb3").hide();
});
$("#sez3").bind('click',function(event) {
$("#thmb1").hide();
$("#thmb2").hide();
$("#thmb3").show("slow");
});
}
);