$(document).ready(function() {
// HOVER-FADE FUNCTIONS
$("a.fade img").hover(function () {
// animate opacity to full
$(this).stop().animate({
opacity: 0.65
}, 200);
},
// on mouse out
function () {
// animate opacity to nill
$(this).stop().animate({
opacity: 1
}, 200);
});


});//END DOM LOADING

