/* ---------------------------------------------------------------
	AFFICHAGE iPHONE
 --------------------------------------------------------------- */
 
function contenuIphone() {
	var idLivre = $('body').attr('livre');

	var myAjax = $.ajax({
		url: 'ajax/index/livre.php',
		type: 'POST',
		data: 'idLivre=' + idLivre,
		success: function(retour){$('#demo_tel').html(retour);},
		complete: function(){			

			$("#exemple").fadeIn('slow');
		
			$('#nav_haut').click(function(){
				$('div.affichage_texte').scrollTo({top:'-=250px', left:'0px'}, 800, {axis:'y'});
			});
			$('#nav_bas').click(function(){
				$('div.affichage_texte').scrollTo({top:'+=250px', left:'0px'}, 800, {axis:'y'});
			});

		}
	});
}


/* ---------------------------------------------------------------
	FONCTIONS A LANCER LORS DU CHARGEMENT DE LA PAGE
 --------------------------------------------------------------- */
$(document).ready(function(){
	
	
	contenuIphone();
	
	// Menu
	$('#biblio div a').each( function(noeud){
		gestionAncre($(this));
		$(this).click(function() {
			var  choix = $(this).attr('id');
			$('body').attr('livre',choix);
			$("#exemple").fadeOut('fast');
			contenuIphone();
		});
	});
	
	




});
// -------------------------------------------------------------