/* This JavaScript (Email Spider Stumper) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting
-------------------------------------------------------------------
Modified by Webmaster Kevin (kduhe@kzla.com) to handle multiple
addresses on the same page. 8/9/2005 */

function stumper_multi(name) {
var theDomain ="tigercrane.com.au";
	document.write('<a href=mailto:' + name + '@' + theDomain + ' class=email>' + name + '@' + theDomain + '</a>');
	}

