     function getTagline() {
        //currentTagline=4    
        currentTagline=(Math.random()*6); 
        currentTagline=Math.round(currentTagline); 
                        
        switch(currentTagline) { 
          case 1:
            document.write('<br /><h5>more than just books</h5>');           
           break;  
          case 2:
            document.write('<br /><h5>at the crossroads of people and ideas</h5>');
            break;          
          case 3:
            document.write('<br /><h5>research tools and expertise for twenty-first century scholars</h5>');
            break; 
          case 4:            
            document.write('<br /><h5>home of world-class collections and up-to-the-minute resources</h5>');
            break;  
          case 5:            
            document.write('<br /><h5>your partners in teaching, learning and research</h5>');
            break;  
          case 6:            
            document.write('<br /><h5>at the heart of campus</h5>');
            break;  
          case 7:            
            document.write('<br /><h5>Providing access to the world of ideas</h5>');
            break;  
 
          default:      
            // library course
            document.write('<br /><h5>at the crossroads of people and ideas</h5>');          
          } 
      } 
