window.onload = function () {
		var platform = navigator.userAgent.search("Mac");
		var browser = navigator.userAgent.search("Firefox");
		
		if (platform != -1) {
			if (browser != -1) {
				document.getElementById("subnav").firstChild.style.marginLeft = "5px";
			}
		}
	}
