/**
 * This plugin can be used in 4 ways, this is only 1. Make sure to check
 * the other 3 links as well to see all the Modes.
 */
jQuery(function( $ ){	
	var urls = [ 'slide_01', 'slide_02', 'slide_03', 'slide_04', 'slide_05', 'slide_06', 'slide_07', 'slide_08', 'slide_09', 'slide_10', 'slide_11', 'slide_12', 'folio_th_01', 'folio_th_02', 'folio_th_03', 'folio_th_04', 'folio_th_05', 'folio_th_06', 'folio_th_07', 'folio_th_08', 'folio_th_09', 'folio_th_10', 'folio_th_11', 'folio_th_12', 'folio_th_13', 'folio_th_14', 'folio_th_15', 'folio_th_16', 'folio_th_17', 'folio_th_18', 'folio_th_19', 'folio_th_20', 'folio_zm_01', 'folio_zm_02', 'folio_zm_03', 'folio_zm_04', 'folio_zm_05', 'folio_zm_06', 'folio_zm_07', 'folio_zm_08', 'folio_zm_09', 'folio_zm_10', 'folio_zm_11', 'folio_zm_12', 'folio_zm_13', 'folio_zm_14', 'folio_zm_15', 'folio_zm_16', 'folio_zm_17', 'folio_zm_18', 'folio_zm_19', 'folio_zm_20'  ];
	
	$.preload( urls, {
		base:'images/',
		ext:'.jpg',
		onComplete:function( data ){
			var img = new Image();
			img.src = data.image;
			$('#url-images').append(img);
		},
		onFinish:function(){
			$('#url-images p').fadeOut(2000);
		}
	});
});
