
jQuery(document).ready(function($){
	if ($('table#filmdb').size() < 1) { return; }
	$('table#filmdb tr').hover(function() {
		$(this).addClass('hover');
	}, function() {
		$(this).removeClass('hover');
	});
});