$(document).ready(function(){

	// Featured
	$('div[id ^= "contentCircle-"]').mouseover(function(){
		$('div[id ^= "contentBox-"]').hide();
		$("#contentBox-" + $(this).attr("title")).show();
	});
	$('div[id ^= "contentBox-"]').hide();
	$("#contentBox-1").show();
	
	// Highlighted
	$('div[id ^= "bottomContentCenterBox-"]').hide();
	$("#bottomContentCenterBox-1").show();
	$('div[id ^= "bottomContentRightContent-"]').hide();
	$("#bottomContentRightContent-1").show();
	$("#bottomContentRotating").jCarouselLite({
		auto: 5000
		, vertical: true
		, afterEnd: function(a) {
				$('div[id ^= "bottomContentCenterBox-"]').hide();
				$("#bottomContentCenterBox-" + $(a).attr("title")).show();
				
				$('div[id ^= "bottomContentRightContent-"]').hide();
				$("#bottomContentRightContent-" + $(a).attr("title")).show();
			}
	});
	
});
