$(function() {
	$(".ProductListVariantSelector").each(function() {
		var options = "";
		$('option', this).each(function() {
			if ($(this).text())
				options += (options == "" ? "" : " | ") + $(this).text();
		});
		$(this).after("<div class=\"layVariants\">" + options + "</div>");
		$(this).hide();
	});
});