// defines the path to the image directory// should be given root path on live servermyImageDirectoryPath = "../images/default.htm"aGeneric = new Array (	"generic_contactus.gif",	"generic_contactus_over.gif",	"generic_introduction.gif",	"generic_introduction_on.gif",	"generic_backtotopbutton_on.gif",	"index_over.gif"	)	aAboutus = new Array (	"aboutus_history_on.gif",	"aboutus_services_on.gif",	"aboutus_london_on.gif",	"aboutus_monaco_on.gif",	"aboutus_fortlauderdale_on.gif",	"aboutus_athens_on.gif"	)	aCharter = new Array (	"charter_private_on.gif",	"charter_corporate_on.gif",	"generic_motor_on.gif",	"generic_sail_on.gif",	"charter_management_on.gif"	)aCruising = new Array (	"cruising_westmed_on.gif",	"cruising_eastmed_on.gif",	"cruising_theamericas_on.gif",	"cruising_world_on.gif"	)	aBrokerage = new Array (	"brokerage_buying_on.gif",	"brokerage_selling_on.gif",	"generic_motor_on.gif",	"generic_sail_on.gif",	"brokerage_recentsales_on.gif"	)	aNewbuild = new Array (	"newbuild_amels_on.gif"	)	aManagement = new Array (	"management_services_on.gif"	)aBoats = new Array (	"boats/interior_button_over.gif",	"boats/plan_button_over.gif",	"boats/specifications_button_over.gif",	"boats/introduction_button_over.gif",	// interior index	"boats/interior_index_over.gif")// Cimex preloaderfunction CX_preloader(myArray) {	myImageArray = new Array ();		for (counter in myArray) {			// uncomment next line to check preloader			//alert("loaded " + (parseInt(counter)+1) + " image of " + myArray.length);			myImageArray[counter] = new Image();			myImageArray[counter].src = myImageDirectoryPath + myArray[counter];	}}// Cimex image swapfunction CX_imageSwap(imageName, imageSrc){	var objStr,obj;		if(document.images){			if (typeof(imageName) == 'string') {			objStr = 'document.' + imageName;			obj = eval(objStr);			obj.src = imageSrc;		} else if ((typeof(imageName) == 'object') && imageName && imageName.src) {			imageName.src = imageSrc;		}	}}function setStatus(msg){		window.status = msg;	return true;}