$(document).ready(function () {
	$('a.lightbox').lightBox();
	$('#dialogBox').jqm({ajax:'@href', trigger: 'a.ModalDiag', overlay:80, toTop:'true'});
});

function submitForm()
{
	$(document).ready(function () {
		var msg = "";
		if($('#MD_intitule').val()=='')  msg+= "Veuillez saisir un intitulé pour votre fichier SVP<br />";
		if($('#MD_embed').val()=='')  msg+= "Veuillez saisir un code pour votre vidéo SVP<br />";
		if($("#copy").is(':checked')) var copie = "ok"; else var copie = "";

		if($("#MD_fx1").is(':checked')) var MD_fx1 = "Y"; else var MD_fx1 = "N";
		if($("#MD_fx2").is(':checked')) var MD_fx2 = "Y"; else var MD_fx2 = "N";
		if($("#MD_fx3").is(':checked')) var MD_fx3 = "Y"; else var MD_fx3 = "N";
		if($("#MD_fx4").is(':checked')) var MD_fx4 = "Y"; else var MD_fx4 = "N";

		if(msg=='')
		{
			$.ajax({
				type: "POST",
				cache: "false",
				url: "ajax.req.php?id=insertVideo",
				data: {"LA_id": $('#LA_id').val(), "MD_intitule": $('#MD_intitule').val(), "MD_embed": $('#MD_embed').val(), "copy": copie, "MD_fx1": MD_fx1, "MD_fx2": MD_fx2, "MD_fx3": MD_fx3, "MD_fx4": MD_fx4},
				success: function(dataReturn) {
					if(dataReturn=='false')
					{
						$('#MSG_erreur').html("Votre lien n'est pas valide<br />Veuillez saisir un lien vers une vidéo parmis les sites : Youtube, Dailymotion ou Viméo<br /><br /><b>Exemple de syntaxe :</b> <br /><b>Youtube : </b>http://www.youtube.com/watch?v=vrnAfeihJKQ<br /><b>Vimeo </b>: http://www.vimeo.com/16663270<br /><b>DailyMotion :</b> http://www.dailymotion.com/video/intitule_de_la_video");
					}
					else
					{
						alert('Vidéo insérée avec succès');
						document.location.href='index.php?rub=4';
					}
				}
			});	
		}
		else
		{
			$('#MSG_erreur').html(msg);
		}
	});
}

function submitForm2()
{
	$(document).ready(function () {
		var msg = "";
		if($('#AC_embed').val()=='')  msg+= "Veuillez saisir un code pour votre vidéo SVP<br />";
		if(msg=='')
		{
			$.ajax({
				type: "POST",
				cache: "false",
				url: "ajax.req.php?id=insertVideo2",
				data: {"LA_id": $('#LA_id').val(), "AC_id": $('#AC_id').val(), "AC_embed": $('#AC_embed').val()},
				success: function(dataReturn) {
					if(dataReturn=='false')
					{
						$('#MSG_erreur').html("Votre lien n'est pas valide<br />Veuillez saisir un lien vers une vidéo parmis les sites : Youtube, Dailymotion ou Viméo<br /><br /><b>Exemple de syntaxe :</b> <br /><b>Youtube : </b>http://www.youtube.com/watch?v=vrnAfeihJKQ<br /><b>Vimeo </b>: http://www.vimeo.com/16663270<br /><b>DailyMotion :</b> http://www.dailymotion.com/video/intitule_de_la_video");
					}
					else
					{
						alert('Vidéo insérée avec succès');
						document.location.href='index.php?rub=6&&toDo=uploadVid&AC_id='+$('#AC_id').val();
					}
				}
			});	
		}
		else
		{
			$('#MSG_erreur').html(msg);
		}
	});
}

function ShowHide(LayerID)
{
	$(document).ready(function () {
		if($("#"+LayerID).is(':visible')) $("#"+LayerID).slideUp('fast');
		if($("#"+LayerID).is(':hidden')) $("#"+LayerID).slideDown('fast');
	});
}

