// JavaScript Document

$(document).ready(function(){
	
	$('#banners').cycle({ 
    	fx:     'fade', 
    	speed:  'slow', 
    	timeout: 3000,  
		next: '#next',
		prev: '#back',
		random: 1,
	});
	
});