$(function() {

	$('#reviewScroller').empty().load(window.officeUrl + '?alttemplate=OfficeQuotes #quotes li', function(){
		$(this).find('li.quote').wrapInner('<a href="'+ window.quoteUrl +'"></a>');
		initScroll($(this));
//		/*
//		$("#reviewScroller").simplyScroll({
//			horizontal: false,
//			autoMode: 'loop',
//			frameRate: 12,
//			speed: 1
//		});
//		*/
	});


	var initScroll = function(element){
		if (element.find('li').length > 0){
			var mode = (element.find('li').length > 1) ? 'loop' : 'off';
			element.parent().addClass('init').end().simplyScroll({
				horizontal: false,
				autoMode: mode,
				frameRate: 12,
				speed: 1
			});
		}
	};
	
	$("ul.tabs").tabs("div.panes > div", {
		onClick: function(event, tabIndex) {
			var newPane = this.getPanes().eq(tabIndex);
			if (!newPane.hasClass('init')){
				initScroll(newPane.find('ul'));
			}
			return true;
		}
		
	});



});
