$(document).ready(function() {
	$('#map-default').css({'position':'absolute','top':'0px','left':'0px','width':'620px','height':'140px'});
	$('#map-okc').css({'position':'absolute','top':'0px','left':'0px','width':'620px','height':'140px','display':'none'});
	$('#map-alma').css({'position':'absolute','top':'0px','left':'0px','width':'620px','height':'140px','display':'none'});
	$('#map-tulsa').css({'position':'absolute','top':'0px','left':'0px','width':'620px','height':'140px','display':'none'});
	
	$('area#tulsa').live("click",function() { 
	 	 $('#map-default').fadeOut();
	 	 $('#map-okc').fadeOut();
	 	 $('#map-alma').fadeOut();
	 	 $('#map-tulsa').fadeIn();
		 return false; 
	});
	$('area#okc').live("click",function() { 
	 	 $('#map-default').fadeOut();
	 	 $('#map-tulsa').fadeOut();
	 	 $('#map-alma').fadeOut();
	 	 $('#map-okc').fadeIn();
		 return false; 
	});
	$('area#alma').live("click",function() { 
	 	 $('#map-default').fadeOut();
	 	 $('#map-tulsa').fadeOut();
	 	 $('#map-okc').fadeOut();
	 	 $('#map-alma').fadeIn();
		 return false; 
	});
});

