$(function() {
// OPACITY OF BUTTON SET TO 50%
$(".img_animation_fade").css("opacity","0.8");
 
// ON MOUSE OVER
$(".img_animation_fade").hover(function () {

// SET OPACITY TO 100%
$(this).stop().animate({
opacity: 1.0
}, "slow");
},

// ON MOUSE OUT
function () {

// SET OPACITY BACK TO 50%
$(this).stop().animate({
opacity: 0.8
}, "slow");
});
});

$(function() {
// OPACITY OF BUTTON SET TO 50%
$(".menu_ani").css("opacity","1.0");
 
// ON MOUSE OVER
$(".menu_ani").hover(function () {

// SET OPACITY TO 100%
$(this).stop().animate({
opacity: 0.0
}, "400");
},

// ON MOUSE OUT
function () {

// SET OPACITY BACK TO 50%
$(this).stop().animate({
opacity: 1.0
}, "400");
});
});

$(function() {
// OPACITY OF BUTTON SET TO 50%
$("#stalkers li").css("opacity","0.0");
 
// ON MOUSE OVER
$("#stalkers li").hover(function () {

// SET OPACITY TO 100%
$(this).stop().animate({
opacity: 1.0
}, "400");
},

// ON MOUSE OUT
function () {

// SET OPACITY BACK TO 50%
$(this).stop().animate({
opacity: 0.0
}, "400");
});
});
