/*
 * JavaScript using jquery
 *  highlighting front page boxes from white to red on hover
 */ 
 $(document).ready(function() {
 
  $("input").cluetip({
                      attribute: 'rel', 
                      hoverClass: 'highlight', 
                      showTitle: false,
                      dropShadow: false, 
                      height: '20px',
                      width: '135px'
                      });

 });
