// JavaScript Document

// Appel jquery

/* 
	$(document).ready(function() {});
	$(function() {});
*/

$(function() {
	var wwidth = document.documentElement.clientWidth;
	var wheight = document.documentElement.clientHeight;
	
	if( wheight < $(document).height() ) {
		wheight = $(document).height();
	}

	$('.open-lightbox').click(function() {
		$('#mask_overlay')
			.css({ opacity:'0.7', width: wwidth + 'px', height: wheight + 'px'})
			.show();
		
		var tPos = ( $(window).height() - $('.layer-lightbox').height() )/2;
		var lPos = ( $(window).width() - $('.layer-lightbox').width() )/2;

		if ( tPos < 0 ) {
			tPos = 10
		}
		
		tPos = tPos + $(window).scrollTop();
		
		$('.layer-lightbox').css({ top:tPos+'px', left:lPos+'px' });

		$('.layer-lightbox').fadeIn(500).show();
		$('#menuHaut ul li').hide();
		
		return false;
	});
	
	$('.close-lightbox').click(function() {
		$('#mask_overlay').fadeOut(500);
		$('.layer-lightbox').hide();
		$('#menuHaut ul li').show();
		
	});

});