if(document.all){
	// fix background image flicker in IE6
	try {
		document.execCommand("BackgroundImageCache", false, true);
	} catch(e) {

	}
}

snap_css = function() {
	var divContentStyle = document.getElementById("content").style;
	divContentStyle.position   = "relative";
	divContentStyle.position   = "static";
	divContentStyle.marginLeft = "0px";
}

if (document.addEventListener) {
    document.addEventListener("DOMContentLoaded", snap_css, false);
}