$(document).ready(function() 
{

   $('.undergrad').qtip(
   {
      content: { 
         url: '/bachelors.html'
         
      },
      position: {
         adjust: {
			 x: -130, y: 0,
            screen: false // Keep the tooltip on-screen at all times
         },
         corner: {
      target: 'rightMiddle',
      tooltip: 'leftMiddle'
   }

		 
      },
      hide: { 
         when: { event: 'unfocus' }, 
         fixed: true 
      },
      show: { 
         when: 'click', /* use mouseover to launch tips on mouseover */
         solo: true // Only show one tooltip at a time
      },
      style: {
         tip: true, // Give it a speech bubble tip
         border: {
            width: 2, 
            radius: 10, 
            color: '#444336'
         },
         title: {
            color: '#fff'
         },
         width: 485
      }
   }); // close the qtip main function

}); // close the ready main function
