//	MODULE highlight navi-bar
//	witch ©2011
//	requires jquery!

    $(document).ready(function(){
		$('.schedule').hover(function() {
			highlight = 'li[title=' + $(this).attr('name') + ']';
			
			$(highlight)
				.stop(true)
				.animate( {	backgroundColor: '#c89b1b'}, 500 )
			},
			function() {
				$(highlight)
				.animate({backgroundColor: '#d6d6d6'}, 100);
			}
		);		
	});
