jQuery.noConflict();     
jQuery(document).ready(function($){

	if ( $('#adminbar #toolbar').length ) {
		
		$('#featured').cycle({ 
	        fx: 'fade',
			timeout: 0,
			speed: '500',			
			cleartype:  1,
			next: '#next',
			prev: '#prev'
		});
		
		$("#controls").show();
		
		$('#subFeaturedRotator').css({
			'margin-bottom': '100px'
		});
		
	}
	else {
			
		$('#featured').cycle({ 
	        fx: 'fade',
			timeout: 0,
			cleartype:  1,
			random: true
		});
		$("#controls").hide();
	}

	$('#subFeaturedRotator').cycle({ 
	    fx: 'fade',
		speed: '500',
		timeout: '5000',
		pause: 'true',
    	pager:  '#sliderControls' 
	});

});

