jQuery(document).ready(function(){

// Fade
    jQuery(".admintools").fadeTo("slow", 0.3); // This sets the opacity of the thumbs to fade down to 80% when the page loads
    jQuery(".admintools").hover(function(){
        jQuery(this).fadeTo("slow", 1.0); // This sets 100% on hover
    },function(){
        jQuery(this).fadeTo("slow", 0.3); // This should set the opacity back to 80% on mouseout
    });
	
	jQuery("img.photo").fadeTo("slow", 0.6); // This sets the opacity of the thumbs to fade down to 60% when the page loads
    jQuery("img.photo").hover(function(){
        jQuery(this).fadeTo("slow", 1.0); // This sets 100% on hover
    },function(){
        jQuery(this).fadeTo("slow", 0.6); // This should set the opacity back to 60% on mouseout
    });
	
});
