$(function() {
	$('.tab').hover(
		function() {
			id = $(this).attr("id");
			tabOver(id)
			},
		function() {
			id = $(this).attr("id");
			tabOut(id);
			}
		);
	});

function tabOver(id) {
	//$("#"+id +" a img").attr("src","/films/modules/images/"+id+"_on.gif");
	$("#"+id).addClass("over");
}	
	
function tabOut(id) {
	if(!$("#"+id).hasClass("on")) {
		//$("#"+id +" a img").attr("src","/films/modules/images/"+id+"_off.gif");
		$("#"+id).removeClass("over");
	}
}