$(function() {
	$("#tabs").tabs({ fx: { duration:'normal', opacity:'toggle' } });
	$('.tab2').click(function() {
    			$("#tabs").tabs('select', 1); // switch to 2nd tab
    			return false; });
	$('.tab5').click(function() {
    			$("#tabs").tabs('select', 4); // switch to 5th tab
    			return false; });
	$('.e').each(function() {
 		var $this = $(this);
 		var t = $this.text();
		$this.text(t.replace('[at]','@').replace(/\[dot\]/g,'.'));
		$(this).attr('href','mailto:'+$this.text());
	});
});