// Fade sponsor logos to 75% initially then fade to 100% opacity on hover
jQuery(function($){
$("div.sponsor").animate({ opacity: 0.75 }, 1); // Set opacity
$("div.sponsor").mouseover(function(){
$(this).animate({ opacity: 1}, 200);
});
$("div.sponsor").mouseout(function(){
$(this).animate({ opacity: 0.75 }, 200);
});
});
