$(function() {
	$('table.schedules tr').hover(
	function() {
		$(this).css('background', '#EEE');
	},
	function() {
		$(this).css('background', 'transparent');
	});
	
	$('table.schedules tr tr').hover(
	function() {
		$(this).css('background', '#DDD');
	},
	function() {
		$(this).css('background', 'transparent');
	});
	
	$('a.lightbox').lightBox({
		'txtImage' : 'Foto',
		'txtOf' : 'van'
	});
});