// ------------------------------------+
//    MAIN FLASHVARS OBJECT            |
// ------------------------------------+
//
this.SWF_VARS = {};
// Hotel's Names
this.SWF_VARS.hotel_name0 = "Bellagio";
this.SWF_VARS.hotel_name1 = "Caesars";
this.SWF_VARS.hotel_name2 = "MGM";
this.SWF_VARS.hotel_name3 = "Paris";
this.SWF_VARS.hotel_name4 = "Venetian";
this.SWF_VARS.hotel_name5 = "Mirage";
// Hotel's URLs
this.SWF_VARS.hotel_URL0 = "http://cityguide.aol.com/lasvegas/entertainment/venue.adp?sbid=102086090";
this.SWF_VARS.hotel_URL1 = "http://cityguide.aol.com/lasvegas/entertainment/venue.adp?sbid=114320268";
this.SWF_VARS.hotel_URL2 = "http://cityguide.aol.com/lasvegas/entertainment/venue.adp?sbid=113414639";
this.SWF_VARS.hotel_URL3 = "http://cityguide.aol.com/lasvegas/entertainment/venue.adp?sbid=111171";
this.SWF_VARS.hotel_URL4 = "http://cityguide.aol.com/lasvegas/entertainment/venue.adp?sbid=114320407";
this.SWF_VARS.hotel_URL5 = "http://cityguide.aol.com/lasvegas/entertainment/venue.adp?sbid=102084040";
// Page's URLs
this.SWF_VARS.page_URL0 = "http://movies.aol.com/publisherfetcher.adp?id=bellagio.html";
this.SWF_VARS.page_URL1 = "http://movies.aol.com/publisherfetcher.adp?id=caesars.html";
this.SWF_VARS.page_URL2 = "http://movies.aol.com/publisherfetcher.adp?id=mgm.html";
this.SWF_VARS.page_URL3 = "http://movies.aol.com/publisherfetcher.adp?id=paris.html";
this.SWF_VARS.page_URL4 = "http://movies.aol.com/publisherfetcher.adp?id=venetian.html";
this.SWF_VARS.page_URL5 = "http://movies.aol.com/publisherfetcher.adp?id=volcano.html";
//
this.SWF_VARS.defaultItem = "0";
//
// ------------------------------------+
//   GRAB VARIABLES FROM QUERY STRING  |
// ------------------------------------+
//	Variables in the url query string will be added to the SWF_VARS object
if(window.location.search != null && window.location.search.length){
	var searchString = window.location.search.substring(1);
	var searchList = searchString.split("&"); // File must be remote otherwise split by '%26'
	for(var i = 0; i < searchList.length; i++){
		var temp = searchList[i].split("=");
		this.SWF_VARS[temp[0]] = temp[1];
	}
}
// ------------------------------------+
//   BUILD FLASH MOVIE                 |
// ------------------------------------+
this.SWF_LOCATION = "http://cdn.digitalcity.com/cg_vegas_360/360_b.swf";
this.SWF_NAME = "vegas";
this.SWF_WIDTH = 729;
this.SWF_HEIGHT = 560;
this.SWF_VERSION = "7,0,0,0";
this.SWF_BGCOLOR = "#ffffff";
//
this.SWF_Factory.makeSWF(this.SWF_VERSION, this.SWF_WIDTH, this.SWF_HEIGHT, this.SWF_NAME, this.SWF_LOCATION, this.SWF_BGCOLOR, this.SWF_VARS, null);
//