jQuery(function(){
	if (typeof global_Current_ProductCode !="undefined"){
		var orig_price = parseFloat(jQuery('font.text.colors_text:eq(0)').find('.price1:eq(0)').text().replace('$','').replace(/,/g,''));
		var sale_price = parseFloat(jQuery('font.pricecolor.colors_productprice:not(.pricecolorsmall)').find('.price1:last').text().replace('$','').replace(/,/g,''));
		var discount_amount = parseFloat(jQuery('font.productnamecolor.colors_productname:eq(0)').find('.you_save:eq(0) i b').text().replace('You save $','').replace(/,/g,'').replace(/!/g,''));
		var discount_saved= (orig_price-sale_price ) / orig_price;
		discount_saved= Math.round(discount_saved*100)/100 +'';
		jQuery('font.productnamecolor.colors_productname:eq(0)').find('.you_save:eq(0) i b').text(jQuery('font.productnamecolor.colors_productname:eq(0)').find('.you_save:eq(0) i b').text() + " (" +discount_saved.replace('0.','') + "%)");
	}
});

