function init() {
	
	var	info = document.getElementsByClassName("info");
	for(i=0; i < info.length; i++) {
		info[i].style.display = "none";
	}
}

function opacity(id,opc) {
	document.getElementById(id).style.filter = "alpha(Opacity="+opc+")";
	document.getElementById(id).style.opacity = opc/100;
}

function page(cat) {
	new Ajax.Updater('page', 'index.php', {parameters:'rubrique=' + encodeURIComponent(cat), asynchronous:true, evalScripts:true});
}