 $(document).ready(function() {
 	
	$('body').click(function(event){
		removeIntro();
	});
	
	$('#close a').click(function(event){
		removeIntro();
	});
	
		if( navigator.userAgent.match(/iPad/i) != null || navigator.userAgent.match(/iPhone/) != null)
	  	{
	  		$('#close').css({'top': '620px'});

	  		
	  	}
	
	//iphone
	$('#close a').bind('touchend', function(){removeIntro(); });
	$('#layerbg').bind('touchend', function(){removeIntro(); });
	$('#intro').bind('touchend', function(){removeIntro(); });

	//video event
	$('video#intro').bind('ended', function(){removeIntro(); });
	
	function removeIntro(){
		$('#introholder').fadeOut();
		$('#layerbg').fadeOut();
		$('#close').fadeOut();
	}
	
						var flashvars = {dir: "http://www.rasch-partner.de/intro/"};
						var params = {
							wmode: "transparent",
							quality: "high",
							allowscriptaccess: "always",
							swliveconnect: "true"
						};
						var attributes = {
							id: "intro",
							name: "intro"
						};
						swfobject.switchOffAutoHideShow();
						swfobject.embedSWF("intro/introplayer.swf", "introfl", "950", "600", "10.0.0", "", flashvars, params, attributes);


})
