$(document).ready(function() {

	if ($('#munged')) {

		var address = [ $('#recipient').html(), $('#domain').html() ];

		var mail = address.join('@');

		$('#munged').html('<a href="mailto:'+mail+'">'+mail+'</a>');

	}
	
	$('#slideshow').cycle({ 
		fx:   		'fade',
		pager:  	'#slideinfo',
		autostop:	1,
		slideExpr:	'img'
	});
	
	
	$("a").easyTooltip();
	
	
	$("#easyTooltip").css({ 'opacity' : 0.2 });
	
	
});

