
function echo_contact_eaddr() {
	var s="%3C%61%20%68%72%65%66%3D%22%6D%61%69%6C%74%6"+"F%3A%69%6E%66%6F%40%61%6D%61%72%6F%6F%69%6E%74%65%72%6"+
		  "9%6F%72%73%2E%63%6F%6D%2E%61%75%22%3E%69%6E%"+"66%6F%40%61%6D%61%72%6F%6F%69%6E%74%65%72%69%6F%72%73%"+
		  "2E%63%6F%6D%2E%61%75%3C%2F%61%3E";
	document.write(unescape(s));
}

function echo_webmaster_eaddr() {
	var s="%3C%61%20%68%72%65%66%3D%22%6D%61%69%6C%74%6F%3A%61%64%6D%69%6E%40%61%6D%61%72%6F%6F%69%6E%74%65%72%6"+
	      "9%6F%72%73%2E%63%6F%6D%2E%61%75%22%3E%57%65%62%6D%61%73%74%65%72%3C%2F%61%3E";
	document.write(unescape(s));
}

$(document).ready(function(){
	// colouring for the menu tabs
	$("#tabs span").each(function() {
		if($(this).hasClass("selected"))
			$(this).animate({ backgroundColor: "#fff", color: "#000" }, 1300 );
		
	});
	$("#tabs span").not(".selected").mouseover(function() {
		$(this).stop();
		$(this).animate( { backgroundColor: "#906f49" }, 200 );
	});
	$("#tabs span").not(".selected").mouseout(function() {
		$(this).stop();
		$(this).animate( { backgroundColor: "#000"}, 1000 );
	});
});

