init_queue.push(function(){

	$('ul#banners').animatedinnerfade({
		'speed' : 'normal',
		'timeout' : 7000,
		'type' : 'sequence',
		'containerheight' : '380px',
		'containerwidth' : '690px',
		'animationSpeed' : 0,
		'animationtype' : 'fade',
		'bgFrame' : 'images/frame.png',
		'controlBox' : 'show',
		'controlBoxClass' : 'mycontrolboxclass',
		'controlButtonsPath' : 'images',
		'displayTitle' : 'none' 
	});

	$('#store_locator_submit').bind('click', function(){$(this).parents('#locator').submit();});

	$('#zip').bind('focus', function(){
		if ($(this).val() == 'enter zip') {$(this).val('');}
	})

	$('#city').bind('focus', function(){
		if ($(this).val() == 'or city') {$(this).val('');}
	});

	// Manual keyboard handling
	$('#zip, #distance, #city, #state').bind('keydown', function(e){
		var key = e.charCode ? e.charCode : e.keyCode ? e.keyCode : 0;
		if (key == 13) {$(this).parents('form').submit();}
	});

});