var cel = null;function toggleContent(el){		if (cel) {			$('#' + cel).slideUp('slow');		}	if (el != cel) {		cel = el;		$('#' + cel).load('detail.php?id='+cel,function() {
              $('#' + cel).slideDown('slow', function() {
                  $('#h_' + cel).ScrollTo(1000);
              });
		  });	} else {		cel = null;	}	return false;}

/*$(document).ready(function() {
    $(".detailsProduit").each(function(i) {
       $(this).hide();
       $(this).load("detail.php?id="+this.id);
    });
});*/