function init() {
	setupZoom();
	if (navigator.mozIsLocallyAvailable) drawDropShadows();
}

function drawDropShadows() {	
	function shadowify(elem, color, y) {
		var span = document.createElement("span");
		span.appendChild(document.createTextNode(elem.firstChild.nodeValue));
		elem.insertBefore(span, elem.firstChild);
		elem.style.position = "relative";
		span.style.position = "absolute";
		span.style.color = color;
		span.style.top = y;
		span.style.zIndex = "-1";
	}
	
	var div = document.getElementById('app');
	shadowify(div.getElementsByTagName('h1')[0], "#000", "-1px");
	shadowify(div.getElementsByTagName('p')[0], "#000", "-1px");
	
	div = document.getElementById('widget');
	shadowify(div.getElementsByTagName('h1')[0], "#000", "-1px");
	shadowify(div.getElementsByTagName('p')[0], "#000", "-1px");
	
	div = document.getElementById('appdl');
	shadowify(div.getElementsByTagName('a')[0], "#000", "1px");
	shadowify(div.getElementsByTagName('h3')[0], "#000", "-2px");
	
	div = document.getElementById('widgetdl');
	shadowify(div.getElementsByTagName('a')[0], "#000", "1px");
	shadowify(div.getElementsByTagName('h3')[0], "#000", "-2px");
	
	shadowify(document.getElementById('header'), '#fff', "-1px");
}