

$(function() { 
   
	var special_browser = new RegExp("(iPhone|iPad|iPod|Nintendo)","i");
	if(navigator.userAgent.match(special_browser)){
		$("#logo").animate({
			opacity: 1.0
		}, 1300 );
	}else{
		$("html").mousemove(function(e){
			$("#logo").animate({
				opacity: 1.0
			}, 1300 );
		});
		
	}
	
	
	$(".iframe").fancybox({
		'transitionIn'	:	'none',
		'transitionOut'	:	'none',
		'speedIn'		:	600, 
		'speedOut'		:	300, 
		'overlayShow'	:	true,
		'padding' 		:	20,
		'titleShow'		:	false,
		'width'			:	400,
		'height'		:	480
	});
	

});


