// jsCycle.js
	
$(function() {
	//if (typeof document.body.style.maxHeight != "undefined"){
    // run the code in the markup!
		eval($('#cycle_banner')
			.cycle({
				fx:    'scrollLeft',
				speed:  2500,
				//speed: 'normal',
				timeout:  7000,
				pager:  '#pages',
				next:   '#next', 
				prev:   '#previous'
		}));
	//}
});	
	
function pause() { 
	$('#banner_container').cycle('pause');
}

