<!-- 

var obj = null;
var thePics = new Array();

thePics = new Array("nav_skincare","nav_spaservices","nav_medservices","nav_spapackages","nav_products","nav_contact","nav_hairremoval","nav_reservations","nav_ipl","nav_botox","nav_laserantiaging","nav_mailinglist");

function swap(name,state) {
    if(thePics[name+state] && thePics[name+state].complete) {
        document.images[name].src = thePics[name+state].src;
    }
}

function preloadPics(thePics) {
	for (i=0;i<thePics.length;i++){
		thePics[thePics[i]] = new Image();
		thePics[thePics[i]].src = 'images/pix.gif';
		thePics[thePics[i]+'_on'] = new Image();
		thePics[thePics[i]+'_on'].src = 'images/arrow_on.gif';
	}
}

preloadPics(thePics);

thePics_copyright = new Array("arrow_gr");

function swap_copyright(name,state) {
    if(thePics_copyright[name+state] && thePics_copyright[name+state].complete) {
        document.images[name].src = thePics_copyright[name+state].src;
    }
}

function preloadPics_copyright(thePics_copyright) {
	for (i=0;i<thePics_copyright.length;i++){
		thePics_copyright[thePics_copyright[i]] = new Image();
		thePics_copyright[thePics_copyright[i]].src = 'images/pix.gif';
		thePics_copyright[thePics_copyright[i]+'_on'] = new Image();
		thePics_copyright[thePics_copyright[i]+'_on'].src = 'images/arrow_gr.gif';
	}
}

preloadPics_copyright(thePics_copyright);

function popWin(location) {
	var dx=400;
	var dy=460;
	var w = window.open(location, 'popWin', 'width=' + dx + ',height=' + dy + ',status=no,resizable=no,menubar=yes,location=no,scrollbars=yes,toolbar=no');
	w.focus();
}

// -->
