// JavaScript Document

/**
 * Create an arrayof preloaded images
 *
 * @param array the names of the images
 *
 */


var _preloaded = null;
function preload(preload) {
 _preloaded = [];
 for(var i = 0, l = preload.length; i < l; i++) {
 _preloaded[i] = document.createElement("img");
 _preloaded[i].src = preload[i];
 }
}
preload(['/images/wait7.gif']);


/* country selection to alow expedia form */

		
									
									
									

