$(function(){
  /** MOUSE OVER FOR QUICK LINKS **/
  $("div.ql_item").hover(
    function(){
      $(this).css('background-color', '#919396');
    },
    function(){
      $(this).css('background-color', '#b3b5b8');
    }
  );

  /** SUPERFISH MENU **/
  $("#ulnav").superfish();

  /** SIDEBAR NAV **/
  $(".nav_career").hover(
    function(){
      $(this).attr('src', 'images/SidebarButtons/Careers-RO.jpg');
    },
    function(){
      $(this).attr('src', 'images/SidebarButtons/Careers.jpg');
    }
  );
  $(".nav_updates").hover(
    function(){
      $(this).attr('src', 'images/SidebarButtons/LatestUpdates-RO.jpg');
    },
    function(){
      $(this).attr('src', 'images/SidebarButtons/LatestUpdates.jpg');
    }
  );
  $(".nav_download").hover(
    function(){
      $(this).attr('src', 'images/SidebarButtons/DownloadRO.jpg');
    },
    function(){
      $(this).attr('src', 'images/SidebarButtons/Download.jpg');
    }
  );

  /** CONVERT REQUEST MORE INFO LINK TO LYTEBOX TRIGGER **/
  $("a").each(function(){
    if($(this).html() == "Request more information"){
      $(this).attr('href','form-request-more-info.php');
      $(this).attr('rel','lyteframe');
      $(this).attr('title', 'Request more information');
      $(this).attr('rev', 'width:500px;height:285px;scrolling:no;');
    }
  });

}); 
