// JavaScript Document
//---------------------------------------------------------------- fading function
$(function () {
$(".fadePic").hover(function(){
$(this).fadeTo("5", 0.7); // This should set the opacity to 80% on hover
},function(){
$(this).fadeTo("5", 1); // This should set the opacity back to 100% on mouseout
});
});






