/* @Copyright BangsoeCom */

$(document).ready(function() {
	if($('.ProductList_Custom_TBL').length){
		if($('.productBox').length){
			$('.productBox').each(function(index){
				$prices = $('.price',this).html().toLowerCase().replace("<strike>",'').replace("</strike>",'').replace("<strike>",'').replace("</strike>",'').replace("<strike>",'').replace("</strike>",'').replace("<strike>",'').replace("</strike>",'').replace("<strike>",'').replace("</strike>",'')
				.replace("<span class=\"pricestriked_productlist\">",'').replace("<span class=pricestriked_productlist>",'').replace("dkk",'').split('</span>');

				if($prices.length==1){
					op = '<i>Ikke p&aring; tilbud</i>';
					$('.discountBox',this).hide();
				} else {
					$prices[0] = $prices[0].replace(".", "").replace(",", ".").replace("&nbsp;",'').replace(" ",'');
					$prices[1] = parseFloat($prices[1].replace(".", "").replace(",", ".").replace("&nbsp;",'').replace(" ",''));
					op = 'Spar<br />'+Math.round(($prices[0]-$prices[1])*100/$prices[0])+'%';
				}
				$('.discountBox',this).html(op);
			});
		}
	} else {
		if($('.productBox').length){
			$c=0;
			$('.productBox').each(function(index){$c++;
				$prices = $('.productprice',this).html().toLowerCase().replace("<strike>",'').split("</strike>");

				if($prices.length==1){
					op = '<i>Ikke p&aring; tilbud</i>';
					$('.discountBox',this).hide();
				} else {
					$prices[0] = parseFloat($prices[0].replace(".", "").replace(",", ".").replace("&nbsp;",'').replace(" ",''));
					$prices[1] = parseFloat($prices[1].replace(".", "").replace(",", ".").replace("&nbsp;",'').replace(" ",''));

					op = 'Spar<br />'+Math.round(($prices[0]-$prices[1])*100/$prices[0])+'%';
				}
				$('.discountBox',this).html(op);
			});
		}
	}
});
