$(document).ready(function(){
	var fc, f;
	$('input, textarea').bind('focus',function(){ $(this).addClass('focus'); });
	$('input, textarea').bind('blur',function(){ $(this).removeClass('focus'); });
	if(fc = $('*:first-child')) fc.addClass('first-child');
// Front page only -- have to put it here because IE does ready events in unpredictable order
	if(f = $("#accountnum").get(0)){ f.blur(); f.focus(); } // blur because if the field was already focused, reload doesn't change focus
// end front page only
	var footWrap = $('#foot-wrap').get(0);
	if(footWrap && footWrap.offsetTop%2)
	{
		footWrap.style.position = 'relative';
		footWrap.style.top = '1px';
	}
});

function setUrchinSegment()
{
	if(navigator.userAgent.search('SiteKiosk')!==-1) __utmSetVar('Kiosk');
}