var $j=jQuery.noConflict();

<!--
function aligner(){
	var v=document.body.offsetHeight - document.getElementById("menu").offsetHeight - document.getElementById("titre").offsetHeight;
	document.getElementById("contenu").style.height = v + "px";
	document.getElementById("contenu").style.width=(document.body.offsetWidth - 210) + "px";
}
//-->

$j(document).ready(function(){
	var b = window;
	if (b.addEventListener)
	{
		b.addEventListener("resize", aligner, false);
		aligner();
	}
	else if (b.attachEvent)
	{
		b.attachEvent("onresize", aligner);
		aligner();
	}
	
	$j("#scroller").simplyScroll({
		autoMode: 'loop',
		speed: 3
	});
	$j("#scroller div").show();

	
	if(tri != '') {
		$j('#'+ tri).css({ background: "#e5ddad", border:"1px solid #bfba6e" });
		$j('#select'+ tri).css("background", "url(agenda/img/fl_select.gif) center center no-repeat");
	}
		
	$j('.bt_tri').click(function(){
		var tri = $j(this).attr("id");
		document.location.href='agenda.php?tri=' + tri;
	});
	
	$j('.TEvent thead').toggle(function(){
		$j(this).parent().find('.description').slideDown();
	},function(){
		$j(this).parent().find('.description').slideUp();
	});
});

