// JavaScript Document

$(document).ready(function(){
						   $(".fade").fadeTo("slow", 0.3); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $(".fade").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 0.3); // This should set the opacity back to 30% on mouseout
						   });
						   });

$(document).ready(function(){
						   $("#text p").fadeTo("slow", 0.3); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("#text p").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 0.3); // This should set the opacity back to 30% on mouseout
							   	});
						   });

$(document).ready(function(){
						   $("#divFade").fadeTo(3000, 0.0); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("#divFade").hover(function(){
						   $(this).fadeTo("slow", 0.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 0.0); // This should set the opacity back to 30% on mouseout
							   	});
						   });

$(document).ready(function(){
						   $("#divSafety").fadeTo(0, 0.0); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("#divSafety").hover(function(){
						   $(this).fadeTo(10, 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo(10, 0.0); // This should set the opacity back to 30% on mouseout
							   	});
						   });

$(document).ready(function(){
						   $("#divMats").fadeTo(0, 0.0); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("#divMats").hover(function(){
						   $(this).fadeTo(10, 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo(10, 0.0); // This should set the opacity back to 30% on mouseout
							   	});
						   });

$(document).ready(function(){
						   $("#divUniforms").fadeTo(0, 0.0); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("#divUniforms").hover(function(){
						   $(this).fadeTo(10, 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo(10, 0.0); // This should set the opacity back to 30% on mouseout
							   	});
						   });

$(document).ready(function(){
						   $("#divClean").fadeTo(0, 0.0); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("#divClean").hover(function(){
						   $(this).fadeTo(10, 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo(10, 0.0); // This should set the opacity back to 30% on mouseout
							   	});
						   });

$(document).ready(function(){
						   $("#divDocs").fadeTo(0, 0.0); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("#divDocs").hover(function(){
						   $(this).fadeTo(10, 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo(10, 0.0); // This should set the opacity back to 30% on mouseout
							   	});
						   });

$(document).ready(function(){
						   $("#divStation").fadeTo(0, 0.0); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("#divStation").hover(function(){
						   $(this).fadeTo(10, 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo(10, 0.0); // This should set the opacity back to 30% on mouseout
							   	});
						   });

$(document).ready(function(){
						   $("#divSupplies").fadeTo(0, 0.0); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("#divSupplies").hover(function(){
						   $(this).fadeTo(10, 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo(10, 0.0); // This should set the opacity back to 30% on mouseout
							   	});
						   });

