jQuery(function( $ ){	
	
	$.preload( urls, {
		base:'index.php?rex_resize=760w__200h__',
		ext:'',
		onComplete:function( data ){
			var img = new Image();
			img.src = data.image;
			$('#rotator').append(img);
		},
		onFinish:function(){
			$('#loader p').fadeOut(2000);
			$('#rotator').cycle({  
				 fx: 'fade',  
				 speed: 6000,  
				 timeout: 4000  
			 });  

		}
	});
});