// JavaScript Document
$(function() {
// do something on document ready

$(".tabfade1").fadeTo("fast", 0.0); // This sets the opacity of the thumbs to fade down to 0% when the page loads

	$(".menu1").hover(function(){
		$(".tabfade1").stop().fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
	},function(){
   		$(".tabfade1").stop().fadeTo("fast", 0.0); // This should set the opacity back to 0% on mouseout
	});
});



// JavaScript Document
$(function() {
// do something on document ready

$(".tabfade2").fadeTo("fast", 0.0); // This sets the opacity of the thumbs to fade down to 0% when the page loads

	$(".menu2").hover(function(){
		$(".tabfade2").stop().fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
	},function(){
   		$(".tabfade2").stop().fadeTo("fast", 0.0); // This should set the opacity back to 0% on mouseout
	});
});

// JavaScript Document
$(function() {
// do something on document ready

$(".tabfade3").fadeTo("fast", 0.0); // This sets the opacity of the thumbs to fade down to 0% when the page loads

	$(".logo").hover(function(){
		$(".tabfade3").stop().fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
	},function(){
   		$(".tabfade3").stop().fadeTo("fast", 0.0); // This should set the opacity back to 0% on mouseout
	});
});