jQuery(document).ready(function() {
	jQuery('#lnkCloseMap').click(function(){
	 jQuery('div.showhide,#popupMap').hide("fast");
	});
	jQuery('#lnkOpenMap').click(function(){
	 jQuery("#popupMap").show("fast");
	});
	jQuery('#popupMap').click(function(){
	 jQuery('div.showhide,#popupMap').hide("fast");
	});
 });
