
			function preload(imgObj,imgSrc) {
	if (document.images) {
		eval(imgObj+' = new Image()')
		eval(imgObj+'.src = "'+imgSrc+'"')
	}
}	
	
function changeImage(layer,imgName,imgObj) {
	if (document.images) {
		if (document.layers && layer!='null') eval('document.'+layer+'.document.images["'+imgName+'"].src = '+imgObj+'.src')
		else document.images[imgName].src = eval(imgObj+".src")
	}
}

			
			preload('home_off','images/03.jpg')
			preload('menu_off','images/04.jpg')
			preload('parties_off','images/18.jpg')
			
			preload('home_on','images/03_on.jpg')
			preload('menu_on','images/04_on.jpg')
			preload('parties_on','images/18_on.jpg')
			
			preload('us_off','images/07.jpg')
			preload('offers_off','images/08.jpg')
			preload('medical_off','images/19.jpg')
			
			preload('us_on','images/07_on.jpg')
			preload('offers_on','images/08_on.jpg')
			preload('medical_on','images/19_on.jpg')
			
			preload('press_on','images/press_on.jpg')
			preload('press_off','images/press.jpg')

			preload('careers_on','images/careers_on.jpg')
			preload('careers_off','images/careers.jpg')		



function CSClickReturn () {
	var bAgent = window.navigator.userAgent; 
	var bAppName = window.navigator.appName;
	if ((bAppName.indexOf("Explorer") >= 0) && (bAgent.indexOf("Mozilla/3") >= 0) && (bAgent.indexOf("Mac") >= 0))
		return true; // dont follow link
	else return false; // dont follow link
}

CSStopExecution = false;
function CSAction(array) { 
	return CSAction2(CSAct, array);
}
function CSAction2(fct, array) { 
	var result;
	for (var i=0;i<array.length;i++) {
		if(CSStopExecution) return false; 
		var actArray = fct[array[i]];
		if (actArray == null) return false;
		var tempArray = new Array;
		for(var j=1;j<actArray.length;j++) {
			if((actArray[j] != null) && (typeof(actArray[j]) == "object") && (actArray[j].length == 2)) {
				if(actArray[j][0] == "VAR") {
					tempArray[j] = CSStateArray[actArray[j][1]];
				}
				else {
					if(actArray[j][0] == "ACT") {
						tempArray[j] = CSAction(new Array(new String(actArray[j][1])));
					}
				else
					tempArray[j] = actArray[j];
				}
			}
			else
				tempArray[j] = actArray[j];
		}			
		result = actArray[0](tempArray);
	}
	return result;
}
CSAct = new Object;

function CSOpenWindow(action) {
	var wf = "";	
	wf = wf + "width=" + action[3];
	wf = wf + ",height=" + action[4];
	wf = wf + ",resizable=" + (action[5] ? "yes" : "no");
	wf = wf + ",scrollbars=" + (action[6] ? "yes" : "no");
	wf = wf + ",menubar=" + (action[7] ? "yes" : "no");
	wf = wf + ",toolbar=" + (action[8] ? "yes" : "no");
	wf = wf + ",directories=" + (action[9] ? "yes" : "no");
	wf = wf + ",location=" + (action[10] ? "yes" : "no");
	wf = wf + ",status=" + (action[11] ? "yes" : "no");		
	window.open(action[1],action[2],wf);
}


CSAct[/*CMP*/ 'B9DEB6EA0'] = new Array(CSOpenWindow,/*URL*/ 'images/map_ani.gif','',234,234,false,false,false,false,false,false,false);

