
$(document).ready(
	function() {
		
		DocumentReady(document);
	}
)

function DocumentReady(obj) {
	
	$(obj).find('.CycleContainer').cycle({
		fx:     'scrollLeft', 
		timeout: 5000, 
		delay:  -500
	});
	$(obj).find('.CycleContainer').removeClass('Hidden');

}


