$(document).ready(function() {
	$("a.notyet").click(function() {
		alert("You Can\'t Open This Door Yet!!!");
	});
	
	$(".door img").fadeTo("slow", 1.0); // set opacity on page load

	$(".door img").hover(function(){
	$(this).fadeTo(2200, 0.0); // set the opacity on hover
	},function(){
	$(this).fadeTo("slow", 0.0); // set the opacity on mouseout
	});		
	
});