jQuery.noConflict();

jQuery(function($) {
// OPACITY OF BUTTON SET TO 50%
$(".polo").css("opacity","0");

// ON MOUSE OVER
$(".marco").hover(function () {
 
// SET OPACITY TO 100%
$(this).find(".polo").stop().animate({
opacity: 0.7
}, "fast");
},
 
// ON MOUSE OUT
function () {
 
// SET OPACITY BACK TO 50%
$(this).find(".polo").stop().animate({
opacity: 0
}, "slow");
});
});





jQuery(function($) {
// OPACITY OF BUTTON SET TO 50%
$(".dumber").css("opacity","0");

// ON MOUSE OVER
$(".dumb").hover(function () {
 
// SET OPACITY TO 100%
$(this).find(".dumber").stop().animate({
opacity: 1.0
}, "fast");
},
 
// ON MOUSE OUT
function () {
 
// SET OPACITY BACK TO 50%
$(this).find(".dumber").stop().animate({
opacity: 0
}, "slow");
});
});







jQuery(function($) {
// OPACITY OF BUTTON SET TO 50%
$(".icecoldman").css("opacity","0");

// ON MOUSE OVER
$(".icecoldman").hover(function () {
 
// SET OPACITY TO 100%
$(this).stop().animate({
opacity: 1.0
}, "fast");
},
 
// ON MOUSE OUT
function () {
 
// SET OPACITY BACK TO 50%
$(this).stop().animate({
opacity: 0
}, "slow");
});
});










jQuery(function($) {
// OPACITY OF BUTTON SET TO 50%
$(".iceman").css("opacity","0.4");

// ON MOUSE OVER
$(".iceman").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.4
}, "slow");
});
});








jQuery(function($) {
// OPACITY OF BUTTON SET TO 50%
$("a.play-pause-large").css("opacity","0.1");

// ON MOUSE OVER
$(".iceman").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.4
}, "slow");
});
});












