$(document).ready(function() {
		
	// Hide the profile container
	$('#profile_container').hide();							
	// After a little time fade the profile container in
	setTimeout( function() {
		$('#profile_container').fadeIn('slow', function() {});
	}, 1000 );
	
	// After a little hile fade the vcard download image out
	setTimeout( function() {
		$('#vcard_image').fadeOut('slow', function() {});
	}, 2000 );
	
	// When hovering over the QR code on the website show a download image
	$("#qr_code_contact").hover(
	  function () {
		$('#qr_image').fadeOut('fast', function() {});
		$('#vcard_image').fadeIn('fast', function() {});
	  },
	  function () {
		$('#qr_image').fadeIn('fast', function() {});
		$('#vcard_image').fadeOut('fast', function() {});
	  }
	);
	
	// Tool tip
	$(function(){
		$(".tool_tip").tipTip();
	});
});	
