﻿$(document).ready(function(){
  
  $("div.navigation ul li").hover(
  
    function() {
      if ($(this).is(".active"))
      {
      }
      else
      {
        $(this).addClass("hover");
      }
    },
    
    function() {
      $(this).removeClass("hover");
    }
  
  );
  

  $(".imgBtnHover").hover(
    function(){
      var hoverSource = $(this).attr("src").replace(/_off.gif/,"_on.gif");
      $(this).attr("src", hoverSource);
    }, 
    function(){
      var hoverSource = $(this).attr("src").replace(/_on.gif/,"_off.gif");
      $(this).attr("src", hoverSource);
    }
  );
 
});

