
function trouverLoguer(){
	// $('.shortProduct .prixPublic').each(function(){
		// $(this).remove();
	// });
	var test="";
	$('.shortProduct').each (function(){
		var prix = $(this).find('.prixMarchand').text();

		
		
		$(this).find('.prixPublic').css('display', 'none');
		$(this).find('.prixMarchand').css('display', 'block');
			
		if(prix.match(/^[1-9]/)==null){//prix.match(/€/)==null)
			$(this).remove();
		}
	});
	
	
	$('.widgetSelectionShortProduct').each (function(){
		var prix = $(this).find('.prixMarchand').text();

		//prix=parseFloat(prix);
		if(prix.match(/€/)==null){
			$(this).remove();
		}else{
			$(this).find('.prixPublic').css('display', 'none');
			$(this).find('.prixMarchand').css('display', 'block');
		}
	});
	
	$('.widgetContainer .prixPublic').each(function(){
		$(this).remove();
	});
	
	$('#product .prixPublic').remove();
	
	$('.shortProduct .prixMarchand').each(function(){
		$(this).css('display','block');
	});
	
	$('.widgetContainer .prixMarchand').each(function(){
		$(this).css('display','block');
	});
	
	$('#product .prixMarchand').css('display','block');
	

}
	
function supprimerMarchand(){
	$('.shortProduct .prixMarchand').each(function(){
		$(this).remove();
	});
	
	$('.widgetContainer .prixMarchand').each(function(){
		$(this).remove();
	});
	
	$('#product .prixMarchand').remove();
	
	$('.shortProduct').each (function(){
	
		var prix = $('.prixPublic',this).text();

		
		/*if((prix == '')||(prix == '0')||(prix == ' €')||(prix ==' 			 		 		 		')||(prix =='			 		')){
			$(this).css('background-color','red');
		}*/
		
		
		
	});
	
	$(document).ready(function(){
	
		var teste="";
		
		$('.shortProduct').each (function(){
	
			var prix = $('.prixPublic',this).text();
			
			if(prix.match(/€/)==null){
				//teste+=prix+" teste ";
				$(this).remove();
			}
			
		});
		
		$('.widgetSelectionShortProduct').each (function(){
	
			var prix = $('.prixPublic',this).text();
			
			if(prix.match(/€/)==null){
				//teste+=prix+" teste ";
				$(this).remove();
			}
			
		});
		
		
		
		//$("#signature").html(teste);
	});
	
}	






