/* ----------------------------------------------------------
	title		  : TC Framework
	created		  : 4/14/09
	last updated  : 1/18/10
---------------------------------------------------------- */
jQuery.noConflict();     
jQuery(document).ready(function($){

/* Image Rotator */
//show controls in admin
if ( $('#adminbar #toolbar').length ) {
	
	
	if ($('#feature').length) {
	
		$('#feature').append('<div id="feature-controls"></div>');
		
		$('#feature-contents').cycle({ 
	    fx:     'fade', 
	    speed:  'fast', 
	    timeout: 0, 
	    pager: '#feature-controls'
		});
	
	}
	
	
	$('#feature-testimonials').cycle({
	fx: 'fade',
	speed: 'slow',
	timeout: 5000,
	pause: 1,
	cleartype: true,
   	cleartypeNoBg: true,
	});

	
} else {

	if ( $('#feature').length ) {
	
		$('#feature').append('<div id="feature-controls"></div>');
	
		$('#feature-contents').cycle({
		fx: 'fade',
		speed: 'slow',
		timeout: 5000,
		pause: 1,
		cleartype: true,
    	cleartypeNoBg: true,
		pager: '#feature-controls'
		});
	
	}
	
	
	$('#feature-testimonials').cycle({
	fx: 'fade',
	speed: 'slow',
	timeout: 5000,
	pause: 1,
	cleartype: true,
   	cleartypeNoBg: true,
	});
}


});//end doc ready

