jQuery(document).ready(function(){

// Fade
    jQuery(".portfolio-image-wrapper .title-overlay").fadeTo("slow", 0.0); // Sets opacity to fade down to 30% when page loads
    jQuery(".portfolio-image-wrapper").hover(function(){
        jQuery(this).children(".title-overlay").fadeTo("slow", 0.8); // Sets 100% on hover
    },function(){
        jQuery(this).children(".title-overlay").fadeTo("slow", 0.0); // Sets opacity back to 30% on mouseout
    });
    jQuery(".portfolio-image-wrapper img").hover(function(){
        jQuery(this).fadeTo("slow", 0.8); // Sets 100% on hover
    },function(){
        jQuery(this).fadeTo("slow", 1.0); // Sets opacity back to 30% on mouseout
    });
});