$(document).ready(function(){
	
	// initialisation du carousel
	$('#jcarousel').jcarousel({});	
	
	// Verif telecharger demo
	$('#get_eval_form').submit(function()
	{
		var email = $('#email').val();
		var radio_newsletter = $(".abo_news:checked").val();
		//var ne_pas_ceder = $(".ne_pas_ceder:checked").val();
		
		var errors = "<ul>";
		if (email.length < 1)
			errors += "<li style='margin-bottom: 5px;'>Merci de compléter le champ <strong>Email</strong>.</li>";
		else if (regexp_email.exec(email) == null)
			errors += "<li style='margin-bottom: 5px;'>Le champ <strong>Votre Email</strong> est incorrect.</li>";
		if (!radio_newsletter)
			errors += "<li style='margin-bottom: 5px;'>Merci d'indiquer si vous souhaitez recevoir l'actualité d'1 Jeu par Jour.</li>";
		//if (!ne_pas_ceder)
			//errors += "<li style='margin-bottom: 5px;'>Merci d'indiquer si vous souhaitez recevoir nos offres partenaires.</li>";
		errors += "</ul>";
	
		if (errors != "<ul></ul>")
		{
			ShowErrorDialog(errors);
			return false;
		}
		
	});
	
	// Verif ajouter avis
	$('#enregistrer_avis').submit(function()
	{
		var email = $('#email').val();
		var nom = $('#nom').val();
		var prenom = $('#prenom').val();
		var note = $('.ratingstar input:checked').val();
		if (note == undefined) note = 0;
		var commentaire = $("#commentaire").val();
		var radio_newsletter = $(".abo_news:checked").val();
		//var ne_pas_ceder = $(".ne_pas_ceder:checked").val();

		var errors = "<ul>";
		if (email.length < 1)
			errors += "<li style='margin-bottom: 5px;'>Merci de compléter le champ <strong>Email</strong>.</li>";
		else if (regexp_email.exec(email) == null)
			errors += "<li style='margin-bottom: 5px;'>Le champ <strong>Votre Email</strong> est incorrect.</li>";
		if (nom.length < 1)
			errors += "<li style='margin-bottom: 5px;'>Merci de compléter le champ <strong>Nom</strong>.</li>";
		if (prenom.length < 1)
			errors += "<li style='margin-bottom: 5px;'>Merci de compléter le champ <strong>Prénom</strong>.</li>";
		if (note == "undefined")
			errors += "<li style='margin-bottom: 5px;'>Merci de choisir une <strong>note</strong>.</li>";
		if (commentaire.length < 1)
			errors += "<li style='margin-bottom: 5px;'>Merci de compléter le champ <strong>Commentaire</strong>.</li>";
		if (!radio_newsletter)
			errors += "<li style='margin-bottom: 5px;'>Merci d'indiquer si vous souhaitez recevoir l'actualité d'1 Jeu par Jour.</li>";
		//if (!ne_pas_ceder)
			//errors += "<li style='margin-bottom: 5px;'>Merci d'indiquer si vous souhaitez recevoir nos offres partenaires.</li>";
		errors += "</ul>";
	
		if (errors != "<ul></ul>")
		{
			ShowErrorDialog(errors);
			return false;
		}
		
	});

	$("div[id^=add_panier_choice]").dialog(
	{
		bgiframe: true,	modal: true,autoOpen: false
		
	});
	
	$("a[id^=add_panier]").click(function()
	{
		ref = $(this).attr("href").match(/ref=(\w+)/i)[1];
		id = "#add_panier_choice_" + ref;
		// si trouvé alors au lieu d'aller à la page panier, on affiche le choix de boit ou dl
		if ($(id).length > 0)
		{
			$(id).dialog("open");
			return false;
		}
	});

	
});
