/* ---------------------------------------------------------------
	Affichage des livres
 --------------------------------------------------------------- */

function affichageLivre(){
	var myAjax = $.ajax({
		url: 'ajax/etagere/liste_livre.php',
		type: 'POST',
		success: function(retour){$('#biblio').html(retour);},
		complete: function(){
			$("div.l1").fadeIn(2000);
			$("div.l2").fadeIn(2000);

			$('#biblio div a').each( function(noeud){
				gestionAncre($(this));
				$(this).click(function() {
					var  choix = $(this).attr('id');
					$('body').attr('livre',choix);
					$("#exemple").fadeOut('fast');
					contenuIphone();
				});
			});

			setTimeout( function(){
				$("div.l1").hide();
				$("div.l2").hide();
				affichageLivre();
			} , 10000);



		}
	});
}
/* ---------------------------------------------------------------
	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(){			
			$('div.txt_chapitre').scrollTo({top:'0px', left:'0px'}, 800, {axis:'y'});
			$("#exemple").attr("style","top:179px;");
			$("#exemple").fadeIn('slow');
		
			$('#nav_haut').click(function(){
				$('div.txt_chapitre').scrollTo({top:'-=250px', left:'0px'}, 800, {axis:'y'});
			});
			$('#nav_bas').click(function(){
				$('div.txt_chapitre').scrollTo({top:'+=250px', left:'0px'}, 800, {axis:'y'});
			});

		}
	});
}

function affichageFooter(choix) {
	
	var myAjax = $.ajax({
		url: 'ajax/index/' + choix + '.php',
		type: 'POST',
		success: function(retour){$('#demo_tel').html(retour);},
		complete: function(){			
			$('div.txt_divers').scrollTo({top:'0px', left:'0px'}, 800, {axis:'y'});
			$("#exemple").attr("style","top:179px;");
			$("#exemple").fadeIn('slow');
		
			$('#nav_haut').click(function(){
				$('div.txt_divers').scrollTo({top:'-=250px', left:'0px'}, 800, {axis:'y'});
			});
			$('#nav_bas').click(function(){
				$('div.txt_divers').scrollTo({top:'+=250px', left:'0px'}, 800, {axis:'y'});
			});

		}
	});
}


/* ---------------------------------------------------------------
	FONCTIONS A LANCER LORS DU CHARGEMENT DE LA PAGE
 --------------------------------------------------------------- */
$(document).ready(function(){
	
	
	contenuIphone();
	
	// Menu
	$('#lh_footer li a').each( function(noeud){
		gestionAncre($(this));
		$(this).click(function() {
			var  choix = $(this).attr('id');
			switch(choix){
				case "m_qui": affichageFooter('qui'); break;
				case "m_mention": affichageFooter('mention'); break;
				case "m_contact": affichageFooter('contact'); break;
				case "m_smartnovel": window.location.href = 'http://www.smartnovel.com';	break;
			}
		});
	});
	
	affichageLivre();
	
	




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