function initRollovers()
  {
    var thisPageName = $('body').attr('class').toLowerCase();
    
    //LOOP THROUGH IMAGES WITH LINKS...
    var allLinkImages = $('a img');
    var allPreloads = new Array();
    var preloadedRollover = new Image();
    preloadedRollover.src = 'images/contact/send_over.jpg';
    allPreloads[0] = preloadedRollover.src
    var i=1;
    jQuery.each(allLinkImages,function()
      {
        //PRELOAD THE ROLLOVER IMAGES FOR EACH IMAGE
        preloadedRollover.src = $(this).attr('src').split(".")[0] + '_over.' + $(this).attr('src').split(".")[1];
        allPreloads[i] = preloadedRollover.src
        
        //MAKE THE NAV BAR LINK FOR THIS PAGE SHOW THE ROLLOVER STATE
        if($(this).attr('id') == thisPageName)
          {
            $(this).attr('src', $(this).attr('src').split(".")[0] + '_over.' + $(this).attr('src').split(".")[1]);
          }
        i++;
      });
    
    //WHEN IMAGE LINKS ARE MOUSED OVER...        
    $('a img:not(".no-hover")').hover
      (
        function()
          {
            //...SUBSTITUTE THE ROLLOVER IMAGE...
            if (thisPageName != $(this).attr('id'))
              {
                var srcSplit = $(this).attr('src').split(".");
                var over = srcSplit[0] + '_over.' + srcSplit[1];
                $(this).attr('src', over);                     
              }
          
          },
        function()
          {
            //...AND THEN REPLACE WITH ORIGINAL IMAGE WHEN MOUSED OUT.
            if (thisPageName != $(this).attr('id'))
              {
                var origSrc = $(this).attr('src').replace(/(_over)/, "");
                $(this).attr('src', origSrc);
              }
          }
      );

/*
    $(".cdbaby-link").hide();
    
    $(".cd-descrip, .lg-cd").hover
      (
        function()
          {
            $(this).find(".cdbaby-link").fadeIn(500);  
          },
        function()
          {
            $(this).find(".cdbaby-link").fadeOut(1000);  
          }
      );
*/

    
    if(thisPageName == 'contact')
      {
        $('#send-button').hover
          (
            function()
              {
                $(this).attr('src', 'images/contact/send_over.jpg')
              },
              
            function()
              {
                $(this).attr('src', 'images/contact/send.jpg')
              }
          );
      }
      
  }

