$().ready(function(){

	$('.email', '.vcard').each(function(i, o) {
		var address = $(o).text().replace(/\s*\[at\]\s*/, '@').replace(/\s*\[dot\]\s*/g, '.');
		$(o).html('<a href="mailto:' + address + '">'+ address +'</a>');
	});

	$('.home ol') 
		.cycle({ 
			fx:     'fade', 
			speed:   1000, 
			timeout: 8000
	});	
	
});