$(function(){

	//Hide all the map content areas
	$(".mapcontent").hide();
	
	//On rollover of the hot zones, load the section identified by the link's href.
	$("a.maprollover").click(function(){return false;});
	$("a.maprollover").each(function() {
		sectionname = $(this).attr("href");
		$(this).after($(sectionname));
	});
	$("#coursemap div.maprollover").hover(
	function(e) {
		$(this).find(".mapcontent").show();
		//$(this).find(".mapcontent").stop(true,true).fadeIn();
	},
	function(e) {
		$(this).find(".mapcontent").hide();
		//$(this).find(".mapcontent").stop(true,true).fadeOut();
	}
	);
	

});
