$(document).ready(function() {
  fixIE6Images();
  defuscateEmailAddress();
  activateGoogleAnalytics();
});

$(window).ready(function() { 
	// Would be better if called after all the images are FULLY loaded
	slideshowPhotos();
});

function defuscateEmailAddress() {
  $('#contact-me').defuscate();
}

function activateGoogleAnalytics() {
	$.jGoogleAnalytics('UA-2701528-5');
}

function fixIE6Images() {
	$('#site_header_img').ifixpng(); 
	$('#humaneq_logo').ifixpng(); 
	$('#futurice_logo').ifixpng();
	$('#blog_img').ifixpng();
}

function slideshowPhotos() {
  $('#photos').cycle({ 
    speed:    200, 
    timeout:  3000,
    center:   0
  });
}
