document.write('<style>#kickers, #tabs {display:none;}</style>'); // avoid show full backgrounds. defaulted when no javascript

$(document).ready(function(){
	//Accessibility
		$('#kickers, #tabs').show(); // display after doc loads
		//$('#tabs h2').hide(); //hide panel headings
	//EO Accessibility    
	
	$("#kickers").tabs(
		{ fx: { opacity: "toggle" } }
	).tabs("rotate", 5000);
	
	$("#tabs").tabs();
	
	//enumerate
	$('#Featured-Categories > ul').each(function(i){
		$(this).addClass('cat' + i);
	});
	$('#Top-Sellers > h2').each(function(i){
		$(this).addClass('step' + i);
	});
	$('#New-Items > h2').each(function(i){
		$(this).addClass('step' + i);
	});

	
	
}); // EOF ready()


