// JavaScript Document

$(document).ready(function(){
	
	var randomize = Math.floor(Math.random()*11) ; 
	
	
	$('.wp_bannerize').cycle({ 
		fx:    'fade',
		timeout: 6000, 
		startingSlide: randomize,
		autostop: 1,
		random:  0
	});
});
