jQuery(document).ready(function(){


jQuery("img.contact_a").hover(
function() {
jQuery(this).animate({"opacity": "0"}, "");
},
function() {
jQuery(this).animate({"opacity": "1"}, "");
});

jQuery("img.upgrade_a").hover(
function() {
jQuery(this).animate({"opacity": "0"}, "");
},
function() {
jQuery(this).animate({"opacity": "1"}, "");
});

jQuery("img.members_a").hover(
function() {
jQuery(this).animate({"opacity": "0"}, "");
},
function() {
jQuery(this).animate({"opacity": "1"}, "");
});

jQuery("img.invite_a").hover(
function() {
jQuery(this).animate({"opacity": "0"}, "");
},
function() {
jQuery(this).animate({"opacity": "1"}, "");
});

jQuery("img.blog_a").hover(
function() {
jQuery(this).animate({"opacity": "0"}, "");
},
function() {
jQuery(this).animate({"opacity": "1"}, "");
});

jQuery("img.forum_a").hover(
function() {
jQuery(this).animate({"opacity": "0"}, "");
},
function() {
jQuery(this).animate({"opacity": "1"}, "");
});

jQuery("img.logo").hover(
function() {
jQuery(this).animate({"opacity": "0"}, "");
},
function() {
jQuery(this).animate({"opacity": "1"}, "");
});

});