var siteurl= "http://interlignes.curiosphere.tv/interlignes/";

$(function(){
	jQuery("#carousel ul").moodular();
	
	//if galerie	
	if($("#galerie_video").length){
		
		var html_v_debut ='<video width="640" height="360" controls="controls"><source src="';
		var html_v_fin = '" type=\'video/mp4; codecs="avc1.42E01E, mp4a.40.2"\' />Vous n\'avez pas de navigateur moderne, veuillez le mettre à jour</video> ';
		
		$("#galerie_video ul a").click(function(){
			if(!$(this).parent().hasClass("active")){
				url_video = $(this).attr("rel");
				$("#galerie_video li").removeClass("active");
				$(this).parent().addClass("active");
				$("#lecteur").html(html_v_debut+url_video+html_v_fin);
			}
			html5media();
			return false;	
		});	
	}
	
});
