/* ----------------------------------------------------------
	title		  : St. Timothy Church
	created		  : 5/27/09
	last updated  : 7/27/09
---------------------------------------------------------- */
jQuery.noConflict();     
jQuery(document).ready(function($){


/* Image Rotator */
function buildPager(ind, slide) {
	ind++;
	var tabTitle = $('.container', slide).text();
	
	if (tabTitle.replace(/ /g,'') == '') { tabTitle = 'slide ' + ind }
	
	return '<li class="tab-'+ ind +'"><a href="#">' + tabTitle + '</a></li>';
}


function rotateMagic() {
	if ( $('#feature').length ) {
	
	$('#intro').append('<ul id="feature-controls"></ul>');
	
		$('#intro #feature-slides').cycle({
		fx: 'fade',
		/* speed: 'slow',*/
		speed: 3000,
		timeout: 100,
		pager: '#feature-controls',
		pagerAnchorBuilder: buildPager,
		startingSlide: 0
		});
	
	}

}


if ( $('#adminbar #toolbar').length ) {
	
	//if admin
	$('#feature #intro .regionBoundary .contentRegion .regionName').remove();
	rotateMagic();

	
} else {

	rotateMagic();
	
}



});//end doc ready