function specOnLoad() {
	preload2(
	'../subcommon/pod_04.gif', '../subcommon/pod_04f.gif',
	'../subcommon/pod_08.gif', '../subcommon/pod_08f.gif',
	'../subcommon/pod_11.gif', '../subcommon/pod_11f.gif',
	'../subcommon/pod_15.gif', '../subcommon/pod_15f.gif',
	'../subcommon/pod_18.gif', '../subcommon/pod_18f.gif',
	'../subcommon/pod_20.gif', '../subcommon/pod_20f.gif'
	);
	
}


function resetSlide() {

}



// resize of the elements specific to the valencia subpage. returns offset (top, left) of the content
function resizeSpecific() {

	if (cbeGetElementById('userpane') != null) {
		with (uPane = cbeGetElementById('userpane').cbe) {
			moveTo(uPane.parentNode.width(),250);
			show();
		}
	}
	
	if (cbeGetElementById('pod-15') != null) {
		with (pod15 = cbeGetElementById('pod-15').cbe) {
			var currTop = pod15.top()
			pod15.top(currTop + 50);
		}
	}
	
	if (cbeGetElementById('monthpane') != null) {
		with (mPane = cbeGetElementById('monthpane').cbe) {
			moveTo(mPane.parentNode.width()+50,150);
			resizeTo(100, height());
			show();
		}
	}

	if (cbeGetElementById('ticker') != null) {
		with (tPane = cbeGetElementById('ticker').cbe) {
			moveTo(100,90);
			//resizeTo(500, height());
			zIndex(50);
			show();
		}
	}

	if (cbeGetElementById('navbar') != null) {
		with (navBar = cbeGetElementById('navbar').cbe) {
			moveTo(100,10);
			zIndex(20);
			show();
		}
	}
	
	
	//with (col1 = cbeGetElementById('col1').cbe) {
		//zIndex(40);
	//	show();
	//}

	
	var myoffset = { x : 0, y : 50 };  
	return myoffset;
}