function clearField(o, w) {

	if(o.value == w) o.value = '';
}

function setCSS() {

	if(navigator.userAgent.search('Firefox/3') > -1) {
		with(document.getElementById('header').style)
		{
			marginLeft = '-1px';
			width = '949px';
		}

		document.getElementById('ticker').style.right = '1px';
	}
}

window.onload = setCSS;
