// JavaScript Document

$(document).ready(function(){
	//Connaitre la hauteur de son ecran
	var hauteurtotale = $('#conteneur').height();
		
		
	//Connaitre la hauteur de son ecran
	function getClientHeight () {
		if(jQuery.browser.msie) {
			return document.documentElement.offsetHeight;
		}
		else
		return window.innerHeight;
	}
	
	var hauteurEcran = getClientHeight();
	
	
	var oldpopin = '';
	function showPopin (popin) {
		oldpopin = popin;
		jQuery.scrollTo( 0, 800, {queue:true} );
		if(hauteurEcran < hauteurtotale) {
			$('#fond_grise').height(hauteurtotale);
		} else {
			$('#fond_grise').height(hauteurEcran);
		}
		$('select').hide(0);
		$('#fond_grise').fadeIn("fast", function () {
			$(popin).fadeIn("fast");
		});
	}
	
	$('#close_popin').click(function(){
		$(oldpopin).fadeOut("fast", function () {
			$('select').show(0);
			$('#fond_grise').fadeOut("fast");
		});
	});
	
	$('.popin_video').click(function(){
		showPopin ('#conteneur_video');
	});
	
	$('.btn_popin_cgu').click(function(){
		showPopin ('#popin_cgu');
	});
});