jQuery.noConflict();

jQuery(document).ready(function($){
	
	var ua = jQuery.browser;
	if ( ua.msie && ua.version.slice(0,3) <= "7.0" ) { jQuery('.browser-msg').click(); }
	
	
	
	if( jQuery('body.catalog-product-view'))
	{	
		jQuery('.old-price .price-label').text('List Price:');
		jQuery('.special-price .price-label').text('Our Price:');
		jQuery('.product-shop .price-box').append('<p class="savings"></p>');
		var oldPrice = jQuery('span[id^=old-price-]').html();
		var prodPrice = jQuery('span[id^=product-price-]').html();
		var listPrice = oldPrice.replace(/[\$,]/g,'');
		var salePrice = prodPrice.replace(/[\$,]/g,'');
		var diffPrice = (listPrice) - (salePrice);
	 	var pctResult = (diffPrice) / (listPrice);
		var pctOff = Math.round(pctResult * 100);
		jQuery('.product-shop .price-box .savings').html('You Save:&nbsp;$'+ diffPrice.toFixed(2) +'&nbsp;('+ pctOff +'%)');
	}


 
});






	
	
	
