jQuery(document).ready(function(){
jQuery("#header #options a").fadeTo("fast", 1); // This sets the opacity of the thumbs to fade down to 60% when the page loads
jQuery("#header #options a").hover(function(){
jQuery(this).fadeTo("fast", 0.85); // This should set the opacity to 100% on hover
},function(){
jQuery(this).fadeTo("fast", 1); // This should set the opacity back to 60% on mouseout
});
});

jQuery(document).ready(function(){
jQuery(".button").fadeTo("fast", 1); // This sets the opacity of the thumbs to fade down to 60% when the page loads
jQuery(".button").hover(function(){
jQuery(this).fadeTo("fast", 0.9); // This should set the opacity to 100% on hover
},function(){
jQuery(this).fadeTo("fast", 1); // This should set the opacity back to 60% on mouseout
});
});

jQuery(document).ready(function(){
jQuery("#adverts div").fadeTo("fast", 0.5); // This sets the opacity of the thumbs to fade down to 60% when the page loads
jQuery("#adverts div").hover(function(){
jQuery(this).fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
},function(){
jQuery(this).fadeTo("fast", 0.5); // This should set the opacity back to 60% on mouseout
});
});

jQuery(document).ready(function(){
jQuery("#footer .right img").fadeTo("fast", 0.20); // This sets the opacity of the thumbs to fade down to 60% when the page loads
jQuery("#footer .right img").hover(function(){
jQuery(this).fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
},function(){
jQuery(this).fadeTo("fast", 0.20); // This should set the opacity back to 60% on mouseout
});
});