// JavaScript Document
$(document).ready(function() 
  {

	  /*$('#main_div').each(
		  function(i) {
			
			 els=$(this).children().filter("#left,#content,#right");
			 hmax=Math.max($(els[0]).height(),$(els[1]).height());
			 hmax=Math.max(hmax,$(els[2]).height());
			 //for (i=0;i<els.length;i++)
			     $(els[0]).height(hmax);
	              $(els[1]).height(hmax);
				   $(els[2]).height(hmax);
		  }
	   );*/
	  $('img.vignette_photo_img').each(function() {
												  /* top=(146-$(this).height())/3;
												   $(this).css('margin-top',top+'px');*/
												}
												);
	  $('#tosearch').attr('value','Rechercher...');
	  $('#tosearch').click(function() {
									$('#tosearch').attr('value','');
									});
  }
);


function addCart(id){
	if ($('#prix_barre').html() > 0 )
	     prix=$('#prix_barre').html();
	else
	   prix=$('#prix').html();
	$.ajax({
		type: 'POST',
		dataType: 'JSON',
        data: {
			   id:        id,
			   couleur:   $('#couleur').val(),
			   materiau:  $('#materiau').val(),
			   dimension: $('#dimension').val(),
			   poids:     $('#poids').html(),
			   id_descriptif : $('#id_descriptif').val(),
			   prix:     prix
		},
		url: "/panier/add",
		success : function(data,status){
			$('#panier_vignette').html(data);
			$('#message').html('<span>Article ajoute au panier</span>');
			$('#message').fadeIn(1000,removeMessage);
			
		}
	 });
}

function removeMessage() {
	$('#message').fadeOut(1000);
}

function checkuser() {
	if ($('input[name=username]').val()!='' && $('input[name=password]').val()!='') {
		$.ajax({
			  type: 'get',
			  data: {username:$('input[name=username]').val(),password:$('input[name=password]').val()},
			  url : '/panier/checkUser',
			  success:function (data,status){
				 // alert(data);
			  }
		 }
	    );
	}
}

function setModeLivraison(mode) {

	$.ajax({
			  type: 'POST',
			  data: {mode:$(mode).val()},
			  url : '/panier/setModeLivraison'
		 }
	    );
}

function masquerDiv(id) {
	$('#'+id).hide();
}

function afficherDiv(id) {
	$('#'+id).show();
}

function changerPhoto(elem) {
	
	$('a.article_detail_photo').find("img").attr('src',$(elem).find("img").attr('src'));
	$('#grande_photo').find("img").attr('src',$(elem).find("img").attr('src'));
}

function getArticleDescriptif() {
	$.ajax({
		   type: 'POST',
		   data: {
			      id_article:$('#id_article').val(),
		          materiau: $('#materiau').val(),
				  couleur: $('#couleur').val(),
				  dimension: $('#dimension').val()
		         },
			dataType: 'JSON',
			url : '/article/articleDescriptif',
			success: function (data,status) {
				var descriptif=eval('(' + data + ')');
				if (descriptif[0].prix_promotion != undefined) {
					$('#prix_barre').html(descriptif[0].prix);
					$('#prix').html(descriptif[0].prix_promotion);
				}else{
					$('#prix').html(descriptif[0].prix);
				}
				$('#poids').html(descriptif[0].poids);
				$('#id_descriptif').val(descriptif[0].id);
			}
		   }
		   );
}
