function note_item()
{
	var handler = this;

	handler.cur_index = 0;
	
//	console.log('rrroooa');
	
	//va et viens des notes actives
	$("#choix_note li a").hover(
		function()
		{
			//console.log('toto');
		
			handler.cur_index = $('#choix_note li a').index(this);
			$('#choix_note li a:lt('+(handler.cur_index+1)+')').addClass('on');
		},
		function()
		{
			$('#choix_note li a').removeClass('on');
		}
	);
}
	
$(document).ready(
	function()
	{
		new note_item;
	}
);