if ((navigator.userAgent.indexOf('iPhone') != -1) || (navigator.userAgent.indexOf('iPad') != -1)) {
	$(document).ready(function() {
					   
	$('#grey').delay(1000).animate({
		left: 100,
		top: 300,
		opacity: 1
	}, 1000); 
	
	$('#grey2').delay(1300).animate({
		left: 100,
		top: 300,
		opacity: 1
	}, 1500);
		
	$('#grey3').delay(1600).animate({
		left: 100,
		top: 300,
		opacity: 1
	}, 2000);

	
$('#bianca').show('slow');
				});

}else{


// JavaScript Document
$(document).ready(function() {
					   
	$('#grey').delay(800).animate({
		left: 100,
		top: 300,
		opacity: 1
	}, 800); 
	
	$('#grey2').delay(1100).animate({
		left: 100,
		top: 300,
		opacity: 1
	}, 800);
		
	$('#grey3').delay(1400).animate({
		left: 100,
		top: 300,
		opacity: 1
	}, 800);

	
$('#bianca').show('slow');
				});
}
