$(function() {
	$('table.schedules tr').hover(
	function() {
	    $(this).css('background', '#B5BDF5');
	},
	function() {
		$(this).css('background', 'transparent');
	});
	
	$('table.schedules tr tr').hover(
	function() {
	    $(this).css('background', '#A6AEE0');
	},
	function() {
		$(this).css('background', 'transparent');
	});
});
