$(document).ready(function () {
  if ($.browser.msie && ($.browser.version == "7.0" || $.browser.version == "6.0")) {
    // If this is IE6-7 then do nothing
  } else {
    $('#toggle-link').html('<p><a href="#" id="map-toggle">Turn Labels Off</a><p>');
    $('#campus-map').append('<img alt="clickable map of chico state campus" id="map-no-labels" src="images/map-without-labels.jpg" usemap="#no-labels" width="874" style="display:none"/>');
    // switch the maperoo
    $('#map-toggle').bind('click', function () {
      if ($('#map-labels').is(':visible')) {
        $('#map-labels').fadeOut('500');
        $('#map-no-labels').fadeIn('500');
        $('#map-toggle').text('Turn Labels On')
      } else {
        $('#map-no-labels').fadeOut('500');
        $('#map-labels').fadeIn('500');
        $('#map-toggle').text('Turn Labels Off')
      }
      return false;
    });
  }
});
