
_getid=function(id){//crossbrowser id search
	if(document.getElementById) return document.getElementById(id);
	if(document.all) return document.all(id);
	if(document.layers) return document.layers(id);
}

_init = function(){
	if(location.pathname=='/tariff.html')
		if(location.hash.length>0)
			if(_getid(location.hash.substr(1))!=null)
				_getid(location.hash.substr(1)).className='tariff_highlight';
}

window.onload = _init;
//_init();

//©2008.d1Mm
