 $('#goo').live('click',function()  {
  if($("#map").css('visibility') == 'hidden'){
  $('#map').slideDown(1);
	 $("#map").css('visibility','visible');
	 $("#map").css('position','relative');
	 $("#MapText").replaceWith('<p id="MapText"><a href=# id=goo><img class="noborder" src="http://s2.sweetspot.ca/mapPage/images/minus.jpg"id="expandMap" alt="" style="float:left;" /> Cacher le plan </a></p>');
  } else {
   $('#map').slideUp(1);
    $("#map").css('visibility','hidden'); 
	 $("#MapText").replaceWith('<p id="MapText"><a href=# id=goo><img class="noborder" src="http://s2.sweetspot.ca/mapPage/images/plus.jpg" id="expandMap" alt="" style="float:left;" /> Afficher le plan </a></p>');
 }
  return false;
});

window.onload = function() {
    var hash = window.location.hash; 
    if(hash != "") {
        var id = hash.substr(1); 
        document.getElementById(id).style.visibility = 'visible';
		document.getElementById(id).style.position = 'relative';
		document.getElementById('MapText').innerHTML = '<a href=# id=goo><img class="noborder" src="http://s2.sweetspot.ca/mapPage/images/minus.jpg"id="expandMap" alt="" style="float:left;" /> Cacher le plan </a>';
    }
};
