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