// ### FAST: 1.0 --> 0.5 ###
// Sets the opacity of specified classes
$(document).ready(function(){
// on page load
	$(".fadebttn_f img").fadeTo("fast", 1.0);
 
	$(".fadebttn_f img").hover(function(){
// on hover event
		$(this).fadeTo("fast", 0.5);
		},function(){
// on mouseout event
		$(this).fadeTo("fast", 1.0);
	});
});

// ### SLOW: 1.0 --> 0.6 ###
// Sets the opacity of specified classes
$(document).ready(function(){
// on page load
	$(".fadebttn_s img, #searchbutton, #subbutton, #submit, #footertop_inner .footnav_pages li a").fadeTo("slow", 1.0);
 
	$(".fadebttn_s img, #searchbutton, #subbutton, #submit, #footertop_inner .footnav_pages li a").hover(function(){
// on hover event
		$(this).fadeTo("slow", 0.6);
		},function(){
// on mouseout event
		$(this).fadeTo("slow", 1.0);
	});
});

// ### SLOW: 0.5 --> 1.0 ###
// Sets the opacity of specified classes
$(document).ready(function(){
// on page load
	$("#topnavbarright #topnav li a").fadeTo("slow", 0.5);
 
	$("#topnavbarright #topnav li a").hover(function(){
// on hover event
		$(this).fadeTo("slow", 1.0);
		},function(){
// on mouseout event
		$(this).fadeTo("slow", 0.5);
	});
});
