﻿// -----------------------------------------------------------------------------------
// INIT
// -----------------------------------------------------------------------------------
$(document).ready(function() {
	$('#menu a').click(function(){	
		var url = $(this).attr('href');
		var h	= Math.round($(window).height()/2) + 40;
		var w 	= Math.round($(window).width()/2) + 40;
		var t	= Math.round($(window).height()/2 - (h/2)-20);
		var l	= Math.round($(window).width()/2 - (w/2)-20);
		$('#overlay').css({
			'height'	: $(document).height()+'px',
			'opacity'	: 0.1
		}).show(); 
		$('#container').css({
			'top'	: t+'px',
			'left'	: l+'px',
			'width'	: w+'px',
			'height': h+'px'
		}).show('scale',{},300, function(){
			$("#container").append('<a id="cth" href="#" title="retour au menu principal">retour au menu principal</a><div id="ctp"></div>');
			$('#ctp').load(url,{},function(){
				$('#ctp').css('height',Math.round(h-30)+'px');
			});
		});
		return false;
	});
	
	$('#cth, #overlay').live('click', function(){
		$('#container').empty();
		$('#container').hide('scale',{},300, function(){
			$('#overlay').hide();
		});
		return false;
	});
	$('#ctc a, #footer a').live('click', function(){
		$(this).attr('target','_blank');
	});
	
});
