function updatePosition(events) { 
	if ((events=='auto') || (events=='')) {
    	document.getElementById('auto').style.backgroundPosition = '0 -56px';
		document.CLICKinsureQuote.zipcode.focus()
		document.CLICKinsureQuote.quotetype.value = 'auto';
	} else {
		document.getElementById('auto').style.backgroundPosition = '0 0';
	}
	if (events=='home') {
    	document.getElementById('home').style.backgroundPosition = '0 -56px';
		document.CLICKinsureQuote.zipcode.focus()
		document.CLICKinsureQuote.quotetype.value = 'home';
	} else {
		document.getElementById('home').style.backgroundPosition = '0 0';
	}
	if (events=='life') {
    	document.getElementById('life').style.backgroundPosition = '0 -56px';
		document.CLICKinsureQuote.zipcode.focus()
		document.CLICKinsureQuote.quotetype.value = 'life';
	} else {
		document.getElementById('life').style.backgroundPosition = '0 0';
	}
}