jQuery.noConflict();     
jQuery(document).ready(function($){
	$('#featuredSlideShow div:first').fadeIn(2000,
    function() {
        $('#featuredSlideShow').cycle({
            fx: 'fade',
            timeout: 5000,
            speed: 1000,
			next: '#next',
			prev: '#prev',
			pause: true,
			pauseOnHover: true
        });
    });
	$("#featuredSlideShowWrapper").hover(
		function () {
			$("#next, #prev").fadeIn();
		}, 
		function () {
			$("#next, #prev").fadeOut();
		}
	);
	var adminView = $('#adminbar #toolbar').length;
	if (adminView) {
		$("#slideShadow").hide();
	}
});
