﻿// 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' : 108,
		// height of the slide (optional)
		'height': 75,
		// alt text for the image (optional)
		'alt' : 'Sensational Qantas Sydney deal',
		// css class assigned to the slide <img> (optional)
		'css' : ''
	};
//Format of array is: ["url","title"]
	// list of images to display
		var A_ITEMS = [
	['/Sites/SiteID3/objLib51/QantasDeal-108x75.jpg'],
	['/Sites/SiteID3/objLib51/Qantas-Logo-108x75.jpg'],
	];
	
	var a_links = [
	['http://www.sydneydeal.com'],
	['http://www.sydneydeal.com'],
	];