/* Shadow Stuff */
bigShadow = document.createElement("div");
bigShadow.style.background = "#000000";
bigShadow.style.height = screen.height+"px";
bigShadow.style.width = screen.width+"px";
bigShadow.style.position = "fixed";
bigShadow.style.top = "0px";
bigShadow.style.left = "0px";
bigShadow.style.opacity = ".7";
bigShadow.style.filter = "alpha(opacity=70)";
function shade() {
	document.body.appendChild(bigShadow);
	document.body.appendChild(bigDiv);
}
function shadeOff() {
	document.body.removeChild(bigShadow);
	document.body.removeChild(bigDiv);
}
bigDiv = document.createElement("div");
bigDiv.style.height = screen.height+"px";
bigDiv.style.width = screen.width+"px";
bigDiv.style.position = "fixed";
bigDiv.style.top = "0px";
bigDiv.style.left = "0px";

function fixStyle(element) {
	if (isIE()==true) {
		return;
	} else {
		element.style.position = "relative";
		element.style.top = "40px";
	}
}
