jQuery(document).ready(function(){

// Fade
    jQuery(".img_entrances").fadeTo("slow", 1.0); // Sets opacity to fade down to 30% when page loads
    jQuery(".img_entrances").hover(function(){
        jQuery(this).fadeTo("slow", 0.7); // Sets 100% on hover
    },function(){
        jQuery(this).fadeTo("slow", 1.0); // Sets opacity back to 30% on mouseout
    });
    jQuery(".puff-image-wrapper img").hover(function(){
        jQuery(this).fadeTo("slow", 0.7); // Sets 100% on hover
    },function(){
        jQuery(this).fadeTo("slow", 0.7); // Sets opacity back to 30% on mouseout
    });
});
