$(document).ready(function(){
$("live").fadeTo("slow", 0.65);
$("live").hover(function(){
$(this).fadeTo("slow", 1.0);
},function(){
$(this).fadeTo("slow", 0.65);
$(this).stop();
});
});
