jQuery.noConflict();     
jQuery(document).ready(function($){
	
	var adminView = $('#adminbar #toolbar').length;
	if (adminView) {

		$('#logo').hide();
		$('#controls').show();
		
		$('#featuredSlideshow .slides').cycle({
			fx: 		'fade',
			timeout: 	0,
			speed: 		500,
			next: 		'#next',
			prev:		'#prev'
		});
	
	};
	
	 	$('#featuredSlideshow .slides').cycle({
			fx: 				'fade',
			timeout: 			6000,
			speed: 				2500,
			pause: 				true,
			containerResize: 	1
		});
		
		
	$('.featuredText .textElement a').hover(function() {
		$('.featuredText .textElement a').stop().animate({
	    	width: 210
	  	}, 200, function() {
	  	});
	},function() {
	    $('.featuredText .textElement a').stop().animate({
	    	width: 190
		  	}, 200, function() {
		  	});
	    });
	
});

