// Portfolio (p) pages movie thumbs fade in effect //

$(document).ready(function(){
$(".pwrap").fadeTo("slow", 0.8); // This sets the opacity of the thumbs to fade down to 80% when the page loads
$(".pwrap").hover(function(){
$(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
},function(){
$(this).fadeTo("slow", 0.8); // This should set the opacity back to 80% on mouseout
});
});

// Gallery page image thumbs fade in effect //

$(document).ready(function(){
$("#gallery-content .thumb").fadeTo("fast", 0.8); // This sets the opacity of the thumbs to fade down to 80% when the page loads
$("#gallery-content .thumb").hover(function(){
$(this).fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
},function(){
$(this).fadeTo("fast", 0.8); // This should set the opacity back to 80% on mouseout
});
});