$(document).ready(function() {
	$('select.ProductListVariantSelector').each(function() {
		$(this).hide();
		var str = '';

		for(var i = 0; i < this.options.length; i++) {
			if(!this.options[i].text) continue;
			txt = this.options[i].text;
			/*splitted = txt.split(', ');
			if(parseInt(splitted[0])==splitted[0]){
				txt = splitted[0];
			}else if(parseInt(splitted[1])==splitted[1]){
				txt = splitted[1];
			}*/
			//txt = parseInt(splitted[1]);
			str += txt + (i != this.options.length-1 ? ', ' : '');
		}
		if(this.options.length>1){
			if(str.length>28)str=str.substring(0,28)+'m.fl.';
			$(this).before('<div class="stocks"><span>'+str+'</span></div>');
		}
	})
});
