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;
}

// --------------------------------
// jQuery
// --------------------------------
$(document).ready(function(){
	// --------------------------------
	// Thumbnail Image Gallery
	// --------------------------------
	$("#pimages a").click(function() {
		var newSrc = $(this).get(0).href;
		var myString = '<img src="' + newSrc + '" width="260" />';
		$("#Aloader").css("display","block");
		$("#masterpic img").fadeOut('fast');
		$("#masterpic").html(myString);
		$("#masterpic img").fadeIn('slow');
		$("#pimages a").removeClass("current");
		$(this).addClass("current");
		return false;
	});
}); // End jQuery