<!--  Top Featured Slideshow -->
$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'fade', // fade default mtp! choose your transition type, ex: fade, scrollUp, shuffle, etc...
		slideExpr: 'img',
		pager:  '#fnav',
		pagerEvent: 'mouseover',
		pauseOnPagerHover: 'true',
		pause: 'true',
		timeout:3000, //5000
		delay:500, //1500
		before: function (curr,next,opts){ 
				$("#slideinfo").html(this.alt);
		}
		
	});
});


<!--  Management Slideshow -->
$(document).ready(function() {
    $('#mgrslides').cycle({
		fx: 'fade', //fade or blindY
		timeout:0 , 
		speed:   300, 
		startingSlide: 0
		
		
	});
	
	$('#goto1').click(function() { 
        $(".mgr").removeClass("active");
		$(this).children("img").addClass("active");
		$('#mgrslides').cycle(1); 
        return false; 
    });
    $('#goto2').click(function() { 
	    $(".mgr").removeClass("active");
		$(this).children("img").addClass("active")
        $('#mgrslides').cycle(2); 
        return false; 
    });
	$('#goto3').click(function() { 
	    $(".mgr").removeClass("active");
		$(this).children("img").addClass("active");
        $('#mgrslides').cycle(3); 
        return false; 
    });
    $('#goto4').click(function() {
		$(".mgr").removeClass("active");
		$(this).children("img").addClass("active"); 
        $('#mgrslides').cycle(4); 
        return false; 
    });
	$('#goto5').click(function() { 
	$(".mgr").removeClass("active");
		$(this).children("img").addClass("active");
        $('#mgrslides').cycle(5); 
        return false; 
    });
    $('#goto6').click(function() { 
	$(".mgr").removeClass("active");
		$(this).children("img").addClass("active");
        $('#mgrslides').cycle(6); 
        return false; 
    });
	$('#goto7').click(function() { 
	$(".mgr").removeClass("active");
		$(this).children("img").addClass("active");
        $('#mgrslides').cycle(7); 
        return false; 
    });
	$('#goto8').click(function() { 
        $(".mgr").removeClass("active");
		$(this).children("img").addClass("active");
		$('#mgrslides').cycle(8); 
        return false; 
    });
    
});


//initially hide the info box
//$(document).ready(function() {
		//$(".cover").fadeOut('1');
//});

<!-- show/hide slide information panel on hover -->
//$(document).ready(function() {
	
        // $('.slideshow').hover(
         	//function() {  $(".cover").fadeIn('200');},
            //function () { $(".cover").fadeOut('0'); 
		// }  );
                         
//});


<!--  Side Article Features Slideshow -->
$(document).ready(function() {
    $('.newsticker').fadeIn('1').cycle({
		fx: 'blindX', // choose your transition type, ex: fade, scrollUp, shuffle, etc..
		timeout:15000,
		delay:-10000,
		sync: 'true',
		pause: 'true'
	
	});
});
