// JavaScript Document
$(function() {
// OPACITY OF BUTTON SET TO 50%
$(".label").css("opacity","0.6");
 
// ON MOUSE OVER
$(".label").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: 1.0
}, "slow");
});
});

$(document).ready(function(){
						   $(".selectf").fadeTo("slow", 0.6); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $(".selectf").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 0.6); // This should set the opacity back to 30% on mouseout
							   	});
						   });
						   
$(document).ready(function(){
						   $(".textglass").fadeTo("slow", 0.4); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $(".textglass").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 0.6); // This should set the opacity back to 30% on mouseout
							   	});
						   });

$(document).ready(function(){
						   $(".textglassK").fadeTo("slow", 0.4); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $(".textglassK").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 0.6); // This should set the opacity back to 30% on mouseout
							   	});
						   });
						   
$(document).ready(function(){
						   $(".textglassW").fadeTo("slow", 0.4); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $(".textglassW").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 0.6); // This should set the opacity back to 30% on mouseout
							   	});
						   });
						   
						   
$(document).ready(function(){
						   $(".txtinp").fadeTo("slow", 0.6); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $(".txtinp").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 0.6); // This should set the opacity back to 30% on mouseout
							   	});
						   });
						   		 				   
				
$(document).ready(function(){
						   $("td a").fadeTo("slow", 0.7); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("td a").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 0.7); // This should set the opacity back to 30% on mouseout
							   	});
						   });
						   		   					
