jq(document).ready(function($){


    // some fades 
    jq('.contentheading,.componentheading,.breadcrumbs').hide('', function(){
        // Animation complete.
    });
    jq('.contentheading,.componentheading,.breadcrumbs').fadeIn('slow', function(){
        // Animation complete.
    });
    
    
    //go to top link   
    jq('a#gotop').click(function(){
        jq('html, body').animate({
            scrollTop: 0
        }, 'slow');
    });
    
    
    
    
    //hover effects
    
    
    jq("#search").fadeTo("slow", .5); // This sets the opacity of the thumbs to fade down to 60% when the page loads
    jq("#search").hover(function(){
        jq(this).fadeTo("slow", 1); // This should set the opacity to 100% on hover
    }, function(){
        jq(this).fadeTo("fast", .5); // This should set the opacity back to 60% on mouseout
    });
    


    
    
});


