﻿jQuery( function() {
	productNodes = jQuery('div.container_result div.products');

	jQuery.each( productNodes, function() {
		_this = jQuery( this );
		var html = _this.html().replace( /\|/g, ", ");
		_this.html( html );
	} );
});

