$(document).ready(function(){
	$("#stevens").fadeTo(0, 0);
	$("#meadows").fadeTo(0, 0);
	$("#meadows").fadeTo(800, 1);
	$("#portland").addClass("active"); // This sets the opacity of the thumbs to fade down to 60% when the page loads

	$("#seattle").hover(function(){
		$("#portland").removeClass("active");
		$("#stevens").fadeTo(200, 1.0);
		$("#meadows").fadeTo(100, 0);  // This should set the opacity to 100% on hover
	},function(){
   		$("#stevens").fadeTo(200, 0);
   		
   		 // This should set the opacity back to 60% on mouseout
	});
	
	
	$("#portland").hover(function(){
		$("#meadows").fadeTo(200, 1.0); // This should set the opacity to 100% on hover
	},function(){
   		$("#meadows").fadeTo(200, 0); // This should set the opacity back to 60% on mouseout
	});
	
	
	

	
	
	
	
	
	
	});
