﻿// JavaScript Document

/*
Image LIST ARRAY
each page calls a different array
Format of array is: ["url","title"]


*/

// configuration structure
	var A_TPL = {
		// randomize the array each time page loads
		'random' : false,
		// number of transparency changes during the transition
		//	increase for smoother transition, reduce for less CPU usage
		'steps' : 20,
		// transition duration in seconds
		'transtime': .5,
		// slide time in seconds
		'slidetime': 2,
		// width of the slide (optional)
		'width' : 230,
		// height of the slide (optional)
		'height': 94,
		// alt text for the image (optional)
		'alt' : '',
		// css class assigned to the slide <img> (optional)
		'css' : ''
	};
//Format of array is: ["url","title"]
	// list of images to display
		var A_ITEMS = [
	['/Sites/SiteID99990113/objLib16/xn230x94.jpg'],
	['/Sites/SiteID99990113/objLib16/xn230x94A.jpg'],
	['/Sites/SiteID99990113/objLib16/xn230x94B.jpg'],
	['/Sites/SiteID99990113/objLib16/xn230x94C.jpg']
	];
	
	var a_links = [
	['http://campaign.ctrip.com/sydney/index.html'],
	['http://campaign.ctrip.com/sydney/index.html'],
	['http://campaign.ctrip.com/sydney/index.html'],
	['http://campaign.ctrip.com/sydney/index.html']
	];