function ToggleShadows() {
	$i++;
	
	if ($i % 2 == 0) {
		$("h1").dropShadow({left: 3, top: 0, opacity: 0.4, blur: 1});
		$("h2").dropShadow({left: 3, top: 0, opacity: 0.4, blur: 1});
		$("h3").dropShadow({left: 3, top: 0, opacity: 0.4, blur: 1});

		document.getElementById('Switch').innerHTML = "<a onClick=\"ToggleShadows();\"><u>Switch <b>off</b> the light!</u></a>";
		/* document.body.style.backgroundImage = "url('/images/DropShadowBig.png')"; */

	} else {
		$("h1").removeShadow();
		$("h2").removeShadow();
		$("h3").removeShadow();

		document.getElementById('Switch').innerHTML = "<a onClick=\"ToggleShadows();\"><u>Switch <b>on</b> the light!</u></a>";
		/* document.body.style.backgroundImage = "url('/images/DropShadow.png')"; */
	}
}

function SetCounter() { $i = 1; }