// JavaScript Document
$(function(){
	$('a.showMap').click(function(){
		$('<div class="lightBox"></div>').appendTo('body').hide().fadeTo('medium','0.6',function(){$('<a href="#" id="mapLarge"><img src="images/mapLarge.gif" alt="Map Large"/></a>').insertAfter('div.lightBox');});
		var winHeight = $('body').height();
		$('div.lightBox').height(winHeight);
		return false;
	});
	$('a#mapLarge').live('click',function(){
		$('a#mapLarge').remove();
		$('div.lightBox').fadeOut('medium',function(){$(this).remove();});
		return false;
	});
});
