function show_spotlight() {
	if (BrowserDetect.browser == 'Explorer') {return false;}
	spotlight = $('signup_spotlight');
	callback = function() {
		reset = function() {
			spotlight.onmouseover = '';
			spotlight.onclick = '';
		}
		spotlight.onclick = function() {fade(spotlight,-1,0,true); reset();}
		spotlight.onmouseover = function() {fade(spotlight,-1,0,true); reset();}
	}
	fade(spotlight,1,2);
	callback();
}
