// jsCycle.js
	
jQuery(function() {
    // run the code in the markup!
   	eval(jQuery('#banner_container')
        .cycle({
			fx:    'scrollLeft',
			speed:  2500,
			timeout:  7000,
            pager:  '#pages',
			next:   '#next', 
    		prev:   '#previous' 
    }));
});	
	
function pause() { 
	jQuery('#banner_container').cycle('pause');
}