// JavaScript Document

var td_portrait_background = 'td_panorama';
var td_portrait_foreground = 'td_portrait_body';
var td_portrait_textblock = 'td_portrait_text';
var td_portrait_imageblock = 'td_portrait_image';
var td_image_array = new Array();
var td_img_array = new Array();




/**
 * Preload the arrays with the filenames of the product images to be used in this website
 */
function init_load_array()
{
	/** Define the arrays */
//	var td_img_array = new Array();
	td_img_array.concept = new Array();
	td_img_array.custom = new Array();
	td_img_array.eternity = new Array();
	td_img_array.flora = new Array();
	td_img_array.horses = new Array();
	td_img_array.onekind = new Array();
	td_img_array.pacifica = new Array();
	td_img_array.yoga = new Array();
	
	
	/** entries following are defaults, for those images that are not defined */
	td_img_array.defaultAddr = new Array();
	td_img_array.defaultAddr.defaultSet = {thumb:"/images/rareearthartsplacerthumb.png", norm:"/images/rareearthartsplacer.png", large:"/images/rareearthartsplacer.png", store:"/contactus.htm" };
    
	load_rea_images();
	
}

