// jsCycle.js

$(function() {
    // run the code in the markup!
   	eval($('#banner')
        .cycle({
			fx:			'scrollHorz',
			speed:  	2500,
			timeout:  	7000,
            pager:  	'#banner_controls',
			next:   	'#ctrl_next a', 
    		prev:   	'#ctrl_previous a'
    }));
});	
	
function pause() { 
	$('#banner').cycle('pause');
}