function rand_number(n){
		var x;
		x=Math.round(Math.random()*100);
		x%=n;
		return x;
	}
window.addEvent('domready', function() {
	
		document.getElementById('bes1').style.display='block';
		document.getElementById('bes2').style.display='block';
		document.getElementById('bes3').style.display='block';
		document.getElementById('bes4').style.display='block';
		document.getElementById('bes5').style.display='block';
		
	var myAccordion = new Accordion($('accordion'), 'h3.toggler', 'div.element', {
		opacity: false,
		onActive: function(toggler, element){
		},
		onBackground: function(toggler, element){
		}
	});
	
		var img = new Array();
		img[0]='<a href="http://www.chateau-amboise.com/francais/index.php"  target="_blank"><img width="533" height="71" src="img/pub/chateau_royal_amboise.gif" border=0  ></a>';
		img[1]='<a href="http://www.art-montgolfieres.fr" target="_blank"   ><img width="533" height="71" src="img/pub/art_montgolfiere.jpg" border=0   ></a>';
		img[2]='<a href="http://www.vinsdeloire.fr" target="_blank" ><img width="533" height="71" src="img/pub/interloire.jpg" border=0  ></a>';
		img[3]='<a href="http://www.locationdevelos.com"  target="_blank"><img width="533" height="71" src="img/pub/detour_de_loire.jpg" border=0  ></a>';
		var n=rand_number(4);
		document.getElementById('partenaire').innerHTML=img[n];
		var b = rand_number(5);
		myAccordion.display(b);
		myAccordion.display(b);

});