// Copyright 2002-2010 Open2b Software Snc - http://www.open2b.com
var Musicstore={Init:function(){this.SetAvailability();},
SetAvailability:function() {
		var elements=document.body.getElementsByTagName('span');
		var elementsLength=elements.length;
		var i;
		var m;
		var regex=/^IAI-(\d*)-(\d*)$/;
		for(i=0;i<elementsLength;i++) {
			if((m=regex.exec(elements[i].className))!=null)
			{
				var stock=parseInt(m[1]);
				var reorder_limit=parseInt(m[2]);
				var imgChild = document.createElement("img");
				var src;
				var title;
				var alt;
				if(stock > reorder_limit) {
    			src = '/available.png';
					title = 'Prodotto disponibile';
					alt = 'Prodotto disponibile';
				}
				else if(stock == reorder_limit) {
					src = '/limit_available.png';
					title = 'Disponibilità limitata';
					alt = 'Disponibilità limitata';
				}
				else if(stock < reorder_limit) {
					src = '/no_available.png';
					title = 'Prodotto non disponibile';
					alt = 'Prodotto non disponibile';
				}
				imgChild.setAttribute("width", "15");
				imgChild.setAttribute("height", "15");					
				imgChild.setAttribute("src", src);
				imgChild.setAttribute("title", title);
				imgChild.setAttribute("alt", alt);
				elements[i].appendChild(imgChild);
			}
		}
	}
};
