// JavaScript Document
function gebid(id)
{
	return document.getElementById(id);
}

var id_bloque0 = 0;
var id_bloque1 = 0;

function show_hide_0(id)
{
	if(gebid('div_'+id) != null && gebid('div_'+id) != "undefined")
	{
		if(gebid('div_'+id).style.display == "block")
		{
			$('#deployer0'+id).css("background-image","url(/front/base/images/fleche0-bas.png)");
			//$('#div_'+id).hide();
			gebid('div_'+id).style.display = "none";
			id_bloque0 = 0;
		}
		else
		{
			$('#deployer0'+id_bloque0).css("background-image","url(/front/base/images/vide.png)");
			//$('#div_'+id_bloque0).hide();
			
			$('#deployer0'+id).css("background-image","url(/front/base/images/fleche0-haut.png)");
			//$('#div_'+id).show();
			gebid('div_'+id).style.display = "block";

			id_bloque0 = id;
		}
	}
}

function show_hide_1(id)
{
	if(gebid('div_'+id) != null && gebid('div_'+id) != "undefined")
	{
		if(gebid('div_'+id).style.display == "block")
		{
			$('#deployer1'+id).css("background-image","url(/front/base/images/fleche1-bas.png)");
			//$('#div_'+id).hide();
			gebid('div_'+id).style.display = "none";
			id_bloque1 = 0;
		}
		else
		{
			$('#deployer1'+id_bloque1).css("background-image","url(/front/base/images/vide.png)");
			//$('#div_'+id_bloque1).hide();
			
			$('#deployer1'+id).css("background-image","url(/front/base/images/fleche1-haut.png)");
			//$('#div_'+id).show();
			gebid('div_'+id).style.display = "block";

			id_bloque1 = id;
		}
	}
}

var old_id0 = 0;
var old_id1 = 0;

function show_fleche_0(id)
{
	if(old_id0 != 0)
	{
		if(gebid('deployer0'+old_id0) != null && gebid('deployer0'+old_id0) != "undefined")
		{
			$('#deployer0'+old_id0).css("background-image","url(/front/base/images/vide.png)");
			if(old_id0 == id_bloque0)
			{
				$('#deployer0'+old_id0).css("background-image","url(/front/base/images/fleche0-haut.png)");
			}
		}
	}
	if(gebid('deployer0'+id) != null && gebid('deployer0'+id) != "undefined")
	{
		$('#deployer0'+id).css("background-image","url(/front/base/images/fleche0-bas.png)");
		
		if(id == id_bloque0)
		{
			$('#deployer0'+id).css("background-image","url(/front/base/images/fleche0-haut.png)");
		}
	}
	old_id0 = id;
}

function hide_fleche_0(id)
{
	$('#deployer0'+id).css("background-image","url(/front/base/images/vide.png)");
}

function show_fleche_1(id)
{
	if(old_id1 != 0)
	{
		if(gebid('deployer1'+old_id1) != null && gebid('deployer1'+old_id1) != "undefined")
		{
			$('#deployer1'+old_id1).css("background-image","url(/front/base/images/vide.png)");
			if(old_id1 == id_bloque1)
			{
				$('#deployer1'+old_id1).css("background-image","url(/front/base/images/fleche1-haut.png)");
			}
		}
	}
	if(gebid('deployer1'+id) != null && gebid('deployer1'+id) != "undefined")
	{
		$('#deployer1'+id).css("background-image","url(/front/base/images/fleche1-bas.png)");
		
		if(id == id_bloque1)
		{
			$('#deployer1'+id).css("background-image","url(/front/base/images/fleche1-haut.png)");
		}
	}
	old_id1 = id;
}

function hide_fleche_1(id)
{
	$('#deployer1'+id).css("background-image","url(/front/base/images/vide.png)");
}

function init_id(id){
	id_bloque = id;
}

var tbody = 13;
var th1 = 28;
var th2 = 18;
var th3 = 13;

function changerTaille(modif)
{
	tbody = tbody + modif;
	
	if(tbody >= 22)
	{
		tbody = 13;
		th1 = 28;
		th2 = 18;
		th3 = 13;
	}
	
	if(tbody < 9)
	{
		tbody = 13;
		th1 = 28;
		th2 = 18;
		th3 = 13;
	}
	
	//document.getElementsByTagName("body")[0].style.fontSize = t + "px";	
	$('body').css("font-size", ""+tbody+"px");
	$('h1').css("font-size", ""+th1+"px");
	$('h2').css("font-size", ""+th2+"px");
	$('h3').css("font-size", ""+th3+"px");
} 	



