var menu = 2;
var img = 1;

var current_menu;
var next_menu;
var next_img;

window.onload = updateMenu();

function updateMenu()
{
	current_menu = menu;
	next_menu = nextMenu(menu);
	next_img = nextImg(img);
	
	fadeMenu('seminaire');
	fadeMenu('nouveaute');
	fadeMenu('temoignage');
	fadeMenu('confiance');
	fadeMenu('diagnostic');
	fadeMenu('pretre');
	
	setTimeout('updateMenu()',4000);	
}

function fadeMenu(menu_id)
{
	jQuery('#menu_'+menu_id+'_'+next_menu+' a img').attr('src','assets/images/'+menu_id+'_0'+next_img+'.jpg');
	jQuery('#menu_'+menu_id+'_'+current_menu).fadeOut('slow');
	
	jQuery('#menu_'+menu_id+'_'+next_menu).fadeIn('slow',function() {
		next_img = nextImg(next_img);
		jQuery('#menu_'+menu_id+'_'+current_menu+' a img').attr('src','assets/images/'+menu_id+'_0'+next_img+'.jpg');
	});
}
									  
function nextMenu(num)
{
	if(num == 1) {
		menu = 2;
	}
	else { 
		menu = 1;
	}
	return menu;
}

function nextImg(num)
{
	if(num == 1) {
		img = 2;
	}
	else if(num == 2) {
		img = 3;
	}
	else { 
		img = 1;
	}
	return img;
}

function columnsToBottom()
{
	return false;
	if(jQuery('#centrale').height() > jQuery('#colonne_gauche').height())	{	
		jQuery('#colonne_gauche').height(jQuery('#centrale').height());
	}
	else {
		jQuery('#centrale').height(jQuery('#colonne_gauche').height());
	}
}

jQuery(function()
{
	jQuery('#lb1 a').click(function() {
		jQuery('#lb1-details').slideToggle();
	});
	jQuery('#lb2 a').click(function() {
		jQuery('#lb2-details').slideToggle();
	});
	jQuery('#lb3 a').click(function() {
		jQuery('#lb3-details').slideToggle();
	});
});
