/*
Down Under Irrigation JavaScript Library
Author: Shawn Raymond ( http://www.switchclick.com/ )
Requires:
	jQuery ( http://jquery.com/ )
	fancybox ( http://fancybox.net/ )
*/
$(document).ready(function() {
	// update fancybox defaults globally
	$.fn.fancybox.defaults.transitionIn='elastic';
	$.fn.fancybox.defaults.transitionOut='elastic';
	$.fn.fancybox.defaults.speedIn=200;
	$.fn.fancybox.defaults.speedOut=200;
	$.fn.fancybox.defaults.cyclic=true;
	// update href values for email addresses globally
	$('a.infoAt').each(function() {
		var str=this.rel;
		str=str.replace('b','@');
		str=str.replace('s','.');
		this.href='mailto:'+str;
		this.innerHTML=str; // because 'this.text' doesn't work in IE
	});
});

