/* Author - Barry Green, Openfield, September 2009, requires jQuery			*/
/* Anchors must be 'area' with an element id of 'X' 					*/
/* Setup 1 targert div per anchor with a class of 'maproll' and an id of 'Xdisp' 	*/
/* Setup div wuth class of 'maproll' and id 'intro' to be displayed on pageload 	*/

$(document).ready(function(){
	$('div.maproll').hide();
	$('div#intro').show();
	$('area').click(function(){
		var target=this.id + 'disp';
		$('div.maproll').hide();
		$('div#' + target).fadeIn('slow');
		return false;
		});
	});