function affiche_sous_rub(pParam, pId)
{
	Ajax( pParam+".php", '', Ajax_success_sous_rub );
	Ajax( pParam+"_peach.php", '', Ajax_success_peach_sous_rub );
	
	var div = document.getElementById('rub_spectacles').getElementsByTagName('div')
	for (var i = 0; i < div.length; i++) 
	{ 
    id = div[i].id
	
   	 document.getElementById(id).style.height = 33+'px';
	 if(id == pId)
	 	document.getElementById(id).style.height = 43+'px';
	}

}

function affiche_conte(pParam, pId)
{
	Ajax( pParam+".php", '', Ajax_success_conte );
	
	var div = document.getElementById('sousrub_spectacles').getElementsByTagName('div')
	for (var i = 0; i < div.length; i++) 
	{ 
    id = div[i].id
	
   	 document.getElementById(id).style.backgroundColor = "#E7CE8B";
	 document.getElementById(id).style.color = "#34280D";
	 if(id == pId)
	 {
	 	document.getElementById(id).style.backgroundColor = "#34280D";
		 document.getElementById(id).style.color = "#E7CE8B";
	 }
	}
	
	
}

function Ajax_success_conte(responseText)
{
	document.getElementById('contenu_spectacles').innerHTML = responseText;
}

function Ajax_success_sous_rub(responseText)
{
	document.getElementById('sousrub_spectacles').innerHTML = responseText;
}

function Ajax_success_peach_sous_rub(responseText)
{
	document.getElementById('contenu_spectacles').innerHTML = responseText;
}

