// Main menu hover effect

$(document).ready(
  function(){
    $('#header-menu ul').find('li a').each(
      function(){
        if ($(this).attr('class') != 'red'){
          $(this).hover(
            function(){
              // $(this).find('span').bind("click", function(){alert($(this).attr("href"))}); 
              
              $(this).find('img').attr('src', 
                function(){
                  return $(this).attr('src').replace(/\-grey\.png/, '-white.png');
                }
              );
              
              $(this).removeClass();
              $(this).addClass('red');           
            },
            function(){
              $(this).removeClass();
              
              $(this).find('img').attr('src',
                function(){
                  return $(this).attr('src').replace(/\-white\.png/, '-grey.png');
                }
              );
            }
          );
        }
      }
    );
  }
);