$(function() {	
	$("nav a").tooltip({ effect: 'fade', fadeOutSpeed: 50, predelay: 0, position : 'top right',offset: [0, 5] });	
	
	$("a[href='#vCard'][rel]").overlay({mask: '#000', effect: 'apple'}); 
	
	$("a[href^='http://']").attr("target","_blank");
	
	$("#insert_email").html('<a href="mailto:mike@diputs.ca">mike@diputs.ca</a>');
	  
	// ======= 
	$("aside div").hide();
	$("aside h3").click(function(){
		$(this).next("div").slideToggle("slow", function(){
			$(this).prev().children(".click_text").text(
				$(this).prev().children(".click_text").text() == 'click to show' ? 'click to hide' : 'click to show'
			);
		});
	});
	// =======	
});
