jQuery(document).ready(function() {
	if (jQuery('.siStock').html() != null) {	
		jQuery('.siStock').click(function() {
			var productID = jQuery('#siProductID').text();
			var url = 'http://shop-admin.easy-m.be/stock.php?productID=' + productID + '&format=json&jsoncallback=?';
			jQuery.getJSON(url, function(data){
				jQuery('#si-stock-general').hide();
				jQuery('.siStock').empty().hide().html(data.html).show('2000');
			});
		});
	}
});
