function ajax_paginate(type,nbperpage,page) {
	$(".zone_ajax").empty().addClass("loading");
	$.ajax({
		type: "POST",
		url: SITE_PATH+"content/ajax/Ajax_Produits.php",
		data: "type="+type+"&nbperpage="+nbperpage+"&page="+page,
		success: function(data){
			$(".zone_ajax").html(data).removeClass("loading");
			sIFR.replace(futura, {
				selector: 'h1.title',
				fitExactly: true,
				css: [
					'.sIFR-root { font-size: 20px; color: #999999; font-style: italic; }',
					'strong { font-style: bold; }',
					'em { font-style: bold; color: #2181da; }'
					],
				wmode: 'transparent'
			});
			Shadowbox.init();
		}
	});
}

function diaporama(id) {
	var items = $("a.gal"+id);
	Shadowbox.open(items[0]);
}

$.listen("click","a.fiche",function() {
	$(this).parent("div.produit").siblings("div.fiche").slideToggle();
});

$.listen("click","a.finitions",function() {
	$(this).parent("div.produit").siblings("div.finitions").slideToggle();
});