$(function() {

      $("#header-logo a").css("opacity","0.75");

      $('#header-logo a').hover( function(){
                $('#header-logo a').animate({
                opacity: 1
              }, 300, function() {
                // Animation complete.
              });

            },
            function(){

                $('#header-logo a').animate({
                opacity: 0.75
              }, 300, function() {
                // Animation complete.
              });

            });


});
