<!-- for logo -->
$(document).ready(function(){
$("img.first").hover(
function() {
$(this).stop().animate({"opacity": "0"}, "medium");
},
function() {
$(this).stop().animate({"opacity": "1"}, "medium");
});
});