		// if absolutePath is set to true, the site is used by third party,
		// so all links must be absolute. All images are downloaded from theaa.com site

		var absolutePath = true; // set this to true in live

		// window.location.protocol determines the first part of the url.
		// if the site is coming from a secure site then it returns https:
		var locationProtocol;
		locationProtocol = window.location.protocol;
		//alert(""+locationProtocol);

		var aa_image_path ='/images';
		var aa_URL_path = '/';
		var aa_CSS_path = '/css';
		var aa_javascript_path = '/javascript';
		var aa_touchclarity_path = '/touchclarity';
		// AdJuggler path - it changes when we request https banner
		var AJ_SRC_path = 'http://adj47.thruport.com:80';


		if (absolutePath == true) {
			aa_image_path = 'http://www.theaa.com/images';
			aa_CSS_path = 'http://www.theaa.com/css';
			aa_javascript_path = 'http://www.theaa.com/javascript';
			aa_touchclarity_path = 'http://www.theaa.com/touchclarity';
			aa_URL_path = 'http://www.theaa.com/';
		}


		if (locationProtocol== 'https:') {
			aa_image_path = 'https://www.theaa.com/images';
			aa_CSS_path = 'https://www.theaa.com/css';
			aa_javascript_path = 'https://www.theaa.com/javascript';
			aa_touchclarity_path = 'https://www.theaa.com/touchclarity';
			aa_URL_path = 'http://www.theaa.com/';
			AJ_SRC_path = 'https://adj47.thruport.com:443';
		}

		//set the default value for target tag to _self (browsing in the same window)
		//in framesets this value is changed to theaawindow
		var targetTag = 'target="_self"';
		
		
		
