function DESemail(emailname,emailserver) {
	document.write("<a href='mailto:" + emailname + "@" + emailserver +"'>");
	document.write(emailname + "@" + emailserver); 
	document.write("</a>"); 
}

// Accessible Pop Ups
function DESopen(url,width,height,toolbar,scroll) {
	window.open(url, "", "scrollbars="+scroll+",toolbar="+toolbar+",height="+ height +",width="+width);
	return false;
}

$(document).ready(function(){
	// --------------------------------
	// JQuery - Add and remove as needed
	// --------------------------------
	$('#slideshow').innerfade({ speed: 2000, timeout: 20000, type: 'random', containerheight: '210px' });

	// --------------------------------
	// FAQ
	// --------------------------------
	$("#cms-faqs a").toggle(
		function(){
			$(this).parent().find(".answer").slideDown("fast");
		},function(){
			$(this).parent().find(".answer").slideUp("fast");
		}
	);

}); // End jQuery