/* ---------- animation démonstration ----------*/

$(document).ready(function() {
	
	$('#ecran_htcdesire').fadeIn(1500, function(){ });
	
	$('#cartefid').click(function() {
		sendmsg("boitereception.jpg", "newmsgecommerce2_desire.jpg", "msgecommerce2_desire.jpg");
	})
	$('#promotion').click(function() {
		sendmsg("boitereception.jpg", "newmsgecommerce_desire.jpg", "msgecommerce_desire.jpg");
	});
	$('#billetavion').click(function() {
		sendmsg("boitereception.jpg", "newmsgavionbillet_desire.jpg", "msgavionbillet_desire.jpg");
	});
	$('#hotels').click(function() {
		sendmsg("boitereception.jpg", "newmsghotels_desire.jpg", "msgehotels_desire.jpg");
	});
	$('#billettrain').click(function() {
		sendmsg("boitereception.jpg", "newmsgtrainbillet_desire.jpg", "msgtrainbillet_desire.jpg");
	});
	$('#trainhoraire').click(function() {
		sendmsg("boitereception.jpg", "newmsgtrainhoraires_desire.jpg", "msgtrainhoraires_desire.jpg");
	});
	
	$('#newmsg').click(function() {
		$('#newmsg_full').slideDown('slow', function(){ });
	});
	
	$('#newmsg_full').click(function() {
		$('#newmsg').fadeOut('fast', function(){ });
		$("#ecran_htcdesire").css("background-image", "url(images/accueil_desire.jpg)");
	});
	
});

function sendmsg(background, imgresume, imgfull){
	var xleft = document.getElementById("enveloppe").style.left;
	if(xleft==""||xleft=="0px"){
		$('#newmsg').fadeOut('fast', function(){ });
		$('#egocloud').fadeOut('fast', function(){ 
			$('#enveloppe').fadeIn('slow', function(){ 
				$("#enveloppe").animate({"left": "+=260px"}, 1000, function(){
					$("#newmsg").css("background-image", "url(images/" + imgresume + ")");
					$('#enveloppe').fadeOut('slow', function(){
						$("#enveloppe").css("left",0);		
						$("#ecran_htcdesire").css("background-image", "url(images/" + background + ")");
						$("#newmsg_full").css("background-image", "url(images/" + imgfull + ")");
						$('#newmsg').fadeIn('slow', function(){ });
						$('#newmsg_full').fadeOut('fast', function(){ });
						$('#egocloud').fadeIn('fast', function(){ });
						setTimeout("openmsg()",1500);
					});
				});
			});
		});
	}
}

function openmsg(){
	$('#newmsg_full').slideDown('slow', function(){ });
}
