$(document).ready(function(){

	$('.header h2').fadeIn(1500);
	$('#slideshow').fadeIn(1500).innerfade({
			animationtype: 'fade',
			speed: 1500,
			timeout: 4000,
			type: 'sequence',
			containerheight: '260px'
		});

	if ( $('#ifmail').length > 0 ){
		$('#ifmail').click(function(){
			var sName = "info";
			var sDomain = "iftechnology";
			var sTld = ".nl";
			document.location.href = "mailto:" + sName + "@" + sDomain + sTld;
		});
	};
					
});