$(document).ready(function() {

	$("#carousel")
	.addClass("js-carousel")
	.find("img")
	.show()
	.end()
	.find("ul.buttons")
	.show()
	.tabs()
	.end()
	.find(".button-wrapper")
	.show();
	
	$("#carousel ul a").click(function() {
		$("#carousel ul a").removeClass("selected");
		$("#carousel .ui-tabs-selected a").addClass("selected");
		omnitureCarouselTracker("#carousel .ui-tabs-selected a");
	});
	
	try {
		document.execCommand('BackgroundImageCache', false, true);
		} catch(e) {}	  
});


