$(document).ready(function(){

         

        $('a > img').hover(
            function(){ 
                $(this).fadeTo(400,0.5);
            },
            function() {
                $(this).fadeTo(400,1);
        });

        function smoothScroll() { 
            var target = $(this.hash); 
            if(target.size()) { 
                var top = target.offset().top;
                $($.browser.safari ? 'body' : 'html').animate({scrollTop:top}, 800, 'easeOutQuint'); 
            } 
            return false; 
        } 


        $('a[href^=#]:not("[href^=#tab]")').bind("click",smoothScroll);

        

        


});


















