/*
$(document).ready(function() {
	$('#fading-banner').cycle({ 
    fx:    'scrollLeft', 
    sync:   0, 
    delay: -85000,
	autostop: 1,
});});
*/
/*
$(document).ready(function() {…your code…})

You can use this syntax instead from the top of the page:

jQuery(function() {…your code…})
*/

jQuery(function() {
	$('#fading-banner').cycle({ 
    fx:    'scrollLeft', 
    sync:   0, 
    delay: -85000,
	autostop: 1
	});
})
