$(document).ready(function(){
$(".single-theme-slider-button").fadeTo("fast", 0);

$(".single-theme-slider-button").hover(function(){
$(this).stop().fadeTo("fast", 1); // This should set the opacity to 100% on hover
},
function(){
$(this).stop().fadeTo("fast", 0); // This should set the opacity back to 60% on mouseout
});
});


$(document).ready(function(){
$("#header a img").stop().fadeTo("fast", 1);

$("#header a img").hover(function(){
$(this).stop().fadeTo("fast", 0.6);
},
function(){
$(this).stop().fadeTo("fast", 1);
});
});

$(document).ready(function(){
$(".signup a").stop().fadeTo("fast", 1);

$(".signup a").hover(function(){
$(this).stop().fadeTo("fast", 0.6);
},
function(){
$(this).stop().fadeTo("fast", 1);
});
});

$(document).ready(function(){
$(".d453 a img").stop().fadeTo("fast", 1);

$(".d453 a img").hover(function(){
$(this).stop().fadeTo("fast", 0.6);
},
function(){
$(this).stop().fadeTo("fast", 1);
});
});

$(document).ready(function(){
$("#past-events a img").stop().fadeTo("fast", 1);

$("#past-events a img").hover(function(){
$(this).stop().fadeTo("fast", 0.6);
},
function(){
$(this).stop().fadeTo("fast", 1);
});
});

$(document).ready(function(){
$("#upcoming-events a img").stop().fadeTo("fast", 1);

$("#upcoming-events a img").hover(function(){
$(this).stop().fadeTo("fast", 0.6);
},
function(){
$(this).stop().fadeTo("fast", 1);
});
});