// JavaScript Document

//Date: 2009 Jan 4
//Author: Steven Grindle
//Purpose: Turn the light on/off

function bulb_off(){
	document.getElementById("bulb").src = "portfolio_dh/images/LightBulbOffV2.gif";
	document.getElementsByTagName("body")[0].style.backgroundColor = "#666666";
	document.getElementById("cheshire").src = "images/cheshire_cat_animated_off.gif";
	document.getElementById("ff_world").src = "images/logo-only_ff_off.gif"; 
	document.getElementById("pi_squared").src = "images/pi_squared_off.gif"; 	
	//document.getElementById("slide_show").style.display = "none";
	//class="display_none"slide_show
}

function bulb_on(){
	document.getElementById("bulb").src = "portfolio_dh/images/LightBulb.gif";
	document.getElementsByTagName("body")[0].style.backgroundColor = "";
	document.getElementById("cheshire").src = "images/cheshire_cat_animated.gif"; 
	document.getElementById("ff_world").src = "images/logo-only_ff.gif";
	document.getElementById("pi_squared").src = "images/pi_squared.gif"; 	
	//document.getElementById("slide_show").style.display = "";

}
