detectJavascript();

var selectedColor = "#3399FF";

window.onload = init;




function init()
{
	document.getElementById("colorWheel").onmousemove = showColor;
	document.getElementById("colorWheel").onmouseout = resetColor;
	document.getElementById("colorWheel").onclick = setColor;
	resetColor();
	
	var tableCellArray = document.getElementsByTagName("td");
	
	for (i = 0; i < tableCellArray.length; i++)
	{
		tableCellArray[i].onmouseover = highlightCell;
		tableCellArray[i].onclick = paintCell;
	}
	
	document.getElementById("canvas").onmouseout = outsideTable;
	
	document.getElementById("pixelForm").onsubmit = checkForm;
	
	document.getElementById("javascriptLoad").className = "off";
	
	return true;
}