function startUp() {
	cssdropdown.startchrome("chromemenu");
	if(typeof pageStartUp == 'function') {// If the page also has a unique startup function
		pageStartUp();// run it
	} 
}

// Hide Email Addresses from Harvesters
function hideaddy(em1, em2, atxt) {
if (em1 && em2) {
	var addy = em1 + '@' + em2;
	if (atxt == "showaddy") { atxt = addy; }
	if (!atxt) { var atxt = "E-Mail"; }
	document.write('<a href=\"mailto:' + addy +'\">' + atxt + '</a>');
	} else {
	document.write(' -- No email address supplied -- ');
	}
}
// Email Addresses with icon
function em(em1, em2, atxt) {
if (em1 && em2) {
	var addy = em1 + '@' + em2;
	if (atxt == "showaddy") { atxt = addy; }
	if (!atxt) { var atxt = "Email"; }
	document.write('<a href=\"mailto:' + addy +'\" title=\"' + addy +'\"class=\"em\">' + atxt + '</a>');
	} else {
	document.write(' -- No email address supplied -- ');
	}
}

// Preload images. Usage: ta_preload('img1.gif,img2.gif');// set image list - do this on web page
function ta_preload(ta_images) {
	var i = 0;
	var imageArray = new Array();
	imageArray = ta_images.split(',');
	var imageObj = new Image();// create object
	for(i=0; i<=imageArray.length-1; i++) {// start preloading
		//document.write('<img src="' + imageArray[i] + '" width="50" height="50" />');// Write to page (for checking)
		imageObj.src=ta_images[i];
	}
}
