Team:LUBBOCK TTU

 
 
 
 
 
 



C:\LUBBOCK_TTU|

<script>

   $(document).ready(function() {
       if($('#location-map')) {
           $('#location-map area').each(function() {
               var id = $(this).attr('id');
               $(this).mouseover(function() {
                   $('#overlay'+id).show();
                   
               });
               
               $(this).mouseout(function() {
                   var id = $(this).attr('id');
                   $('#overlay'+id).hide();
               });
           
           });
       }
   });

</script>