$(document).ready(function(){
						   $("#col_fade_one").fadeTo("slow", 0.8); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("#col_fade_one").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
							   	});
						   });
						   
$(document).ready(function(){
						   $("#col_fade_two").fadeTo("slow", 0.8); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("#col_fade_two").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
							   	});
						   });
						   
$(document).ready(function(){
						   $("#col_fade_three").fadeTo("slow", 0.8); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("#col_fade_three").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
							   	});
						   });
						   
$(document).ready(function(){
						   $("#col_fade_four").fadeTo("slow", 0.8); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("#col_fade_four").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
							   	});
						   });
