// JavaScript Document
function OnLoadPage(){
	var img_src = "http://"+window.location.hostname+"/includes/images/site/";
	//----------------------
	FurnitureCollections = new Image();
	FurnitureCollections.src = img_src+"FurnitureCollections.png";
	FurnitureCollectionsH = new Image();
	FurnitureCollectionsH.src = img_src+"FurnitureCollectionsH.png";
	//---------------------
	AboutTuiLifestyle = new Image();
	AboutTuiLifestyle.src = img_src+"AboutTuiLifestyle.png";
	AboutTuiLifestyleH = new Image();
	AboutTuiLifestyleH.src = img_src+"AboutTuiLifestyleH.png";
	//---------------------
	TuiLifestyleServices = new Image();
	TuiLifestyleServices.src = img_src+"TuiLifestyleServices.png";
	TuiLifestyleServicesH = new Image();
	TuiLifestyleServicesH.src = img_src+"TuiLifestyleServicesH.png";
	//---------------------
	TuiLifestyleMedia = new Image();
	TuiLifestyleMedia.src = img_src+"TuiLifestyleMedia.png";
	TuiLifestyleMediaH = new Image();
	TuiLifestyleMediaH.src = img_src+"TuiLifestyleMediaH.png";
	//---------------------
	DesignCenters = new Image();
	DesignCenters.src = img_src+"DesignCenters.png";
	DesignCentersH = new Image();
	DesignCentersH.src = img_src+"DesignCentersH.png";
	//---------------------
	ContactTuiLifestyle = new Image();
	ContactTuiLifestyle.src = img_src+"ContactTuiLifestyle.png";
	ContactTuiLifestyleH = new Image();
	ContactTuiLifestyleH.src = img_src+"ContactTuiLifestyleH.png";
} //---[End OnLoadPage Function]
function SwapImage(){
	if (document.images){ for (var x=0; x<SwapImage.arguments.length; x+=2) { document[SwapImage.arguments[x]].src = eval(SwapImage.arguments[x+1] + ".src"); } }
} //---[End SwapImage Function]
function ChangeImage(type,id_num){
	if (type=='reg') { var img_src='menu_bg.png'; }
	if (type=='na') { var img_src='menu_bg_na.png'; }
	if (type=='wh') { var img_src='menu_bg_wh.png'; }
	if (type=='wh_na') { var img_src='menu_bg_wh_na.png'; }  
	var menu_item = document.getElementById('MI_'+id_num);
	menu_item.style.backgroundImage='url(http://'+window.location.hostname+'/includes/images/site/'+img_src+')';
	return true;	
} //---[End ChangeImage Function]
function NewWin(ref) {	
	var strFeatures="toolbar=no,status=no,menubar=no,location=no";
	strFeatures=strFeatures+",scrollbars=yes,resizable=yes,height=400,width=640";
	newWin = window.open(ref,"TellObj",strFeatures); newWin.opener=top;
} //---[End NewWin Function]
function RandomTestimonial() {
	var img_src = "http://"+window.location.hostname+"/includes/images/site/testimonials/";
	images=new Array(9); var i=0;
	for (i=0;i<=9;i++) { images[i] = "<img src='"+img_src+"testimonial_"+i+".jpg' alt='Customer Testimonial' />"; }
	index=Math.floor(Math.random()*images.length);
	document.write(images[index]);
} //---[End RandomTestimonial Function]
