function schedule() {

	var divs = "";

	$('div').each(function() {
						   
		if($(this).attr("title"))
		{
	   $(this).mouseenter(function() {
			//$(this).stop().animate( { backgroundColor: '#cc9966' }, 80);
			$(this).css('background-color', '#cc9966');
			
		});
	
		$(this).mouseleave(function() {
		   //$(this).stop().animate( { backgroundColor: '#878787' }, 80);
		   $(this).css('background-color', '#878787');
		});
		
		divs = divs + " " + $(this).attr("title");
		
		
		
		//break up the title name for making a link
		$(this).click(function() {
			//alert($(this).attr("title"));
			var goText = $(this).attr("title");
			var goTo = goText.split('?');
			if (goTo[1]){
				window.location.href = "./index.html#" + goTo[0] + '.html?' + goTo[1];
			}else
			{
				window.location.href = "./index.html#"+goTo[0] + '.html';
			}
			
		});
	 
		}
	 });
	 
	//alert(divs);
	
}


