// Encodé en UTF-8



$(document).ready(function() {
	
	$('#flashcontent').flash({ 
		src: '/swf/player.swf',
		width: 438,
		height: 258,
		wmode: "transparent",
		flashvars: { movieName: 1 }
	})
	$('#flashcontent .alt').hide();
	
	//liste videos
	
	$("#videos-list select").change(function () {
          var url = "";
		  var txt = "";
          $("#videos-list select option:selected").each(function () {
                url = $(this).attr("value");
				txt = $(this).attr("title");
              });
          	$('#flashcontent').flash({ 
				src: '/swf/player.swf',
				width: 438,
				height: 258,
				wmode: "transparent",
				flashvars: { movieName: url }
			}).next().text(txt);
			$('#flashcontent .alt').hide();
        })
        .change();
    
	
	
	// click sur bouton agenda
	
	$("#agenda a.link-btn").hover(function(){

	    $("#agenda a.link-btn").each(function(){
           $(this).removeClass('active')
            .next().children().removeClass('ag-hover').addClass('ag');
           $(this).next().hide().next().hide();
         });
        $(this).addClass('active')
        .next().children().addClass('ag-hover');
        $(this).next().show().next().show();
	
	 },function(){
	
	 });
	
});

