
//jQuery(document).ready(function() {
// jQuery(function($) {
$(window).load(function() {
				
  $('#mainstory_banner').cycle({ 
    fx:     'fade', 
    timeout: 5000,
	speed: 1000,
	next:   '#mainstory_next', 
    prev:   '#mainstory_prev',
	pause:       0,
	//autostop:      1,
	//pagerClick:  function(i, nextSlide) {
        //alert("Pager button " + i + " was clicked");
    //},
	pager:  '#mainstory_pager',
	before:  onBefore, 
    after:   onAfter

 });
});


function onBefore() {     $('#image-status').html(this.alt); } 
function onAfter() {     $('#image-status').html(this.alt); }