function voirDetailProduit(idProd){
	var etat = jQuery("#product_detail_id_"+idProd).css("display");

	if(etat=="none"){

		jQuery("#soft_seemore_"+idProd).css("visibility","hidden");
		jQuery("#product_detail_id_"+idProd).slideDown("slow");
	}else {
		jQuery("#product_detail_id_"+idProd).slideUp("slow", 	function () {jQuery("#soft_seemore_"+idProd).css("visibility","visible") } );
	}

}
function cacheDetailProduit(idProd){


		jQuery("#product_detail_id_"+idProd).slideUp("slow", 	function () {jQuery("#soft_seemore_"+idProd).css("visibility","visible") } );
}

function ChargerVideo(url, id, width, height){

	jQuery("#videoProduit_"+id).html("<object width=\""+width+"\" height=\""+height+"\"><param name=\"movie\" value=\""+url+"\"></param><param name=\"allowFullScreen\" value=\"true\"></param><param name=\"allowscriptaccess\" value=\"always\"></param><embed src=\""+url+"\" type=\"application/x-shockwave-flash\" allowscriptaccess=\"always\" allowfullscreen=\"true\" width=\""+width+"\" height=\""+height+"\"></embed></object>");

	return false;
}
