$(function(){
	$('.chargement').hide();
		
	$("a.nyroModal").live('click', function(e){
		e.preventDefault();
		$(this).nyroModalManual( {title: null, zIndexStart: 1000} );
		return false;
	});
	
	$('#menu-gauche a').live('click', function(){
			lien('gauche', this, null);
			return false;
	});
		
	$('#menu-droite a').live('click', function(){
			lien('droite', this, null);
			return false;
	});
	
	$("#menu-principal li a").click(function(){
			lien('gauche', this, {pos: 'left'});
			lien('centre', this, {pos: 'center'});
			lien('droite', this, {pos: 'right'});
			$("#menu-principal li").each(function(){
				$(this).children().removeClass("select");
			});
			$(this).addClass("select");
			return false;
	});
});

function lien(zone, el, params){
	if(el.href[el.href.length-1] == '#')
		return false;

	if(params == null) {
		$(el).parent().children().toggleClass("select", false);
	}
	
	$(el).addClass("select");
	$("#contenu-" + zone).html('&nbsp;');
	$("#chargement-" + zone).show();
	$("#contenu-" + zone).load(el.href, params, function(){ $("#chargement-" + zone).hide(); });
	//$.fn.cycle.options.currSlide = 0;
	return false;
}
