// JavaScript Document

$(function(){
	                                   //begining of .js
	
$("#reddoor").click(function(){
	$("#door").fadeOut(1000);
	
});

//tr alternate color table begin

$("tr:odd").css("background-color","gray")

$("th").css("background-color","blue")

$("tr:even").css("background-color","tan")

//tr alternate color table end

//hover begin

$("tr").hover(function() {
  $(this).css("color","white");
  }, 

function() {
	$(this).css("color","black");
	
});

//hover end
	
                                          //end of .js
});




