//Begin shopcart images///////////
var price = 0;
$('.shopCartCellPrice').each(
	function(i){ price += parseInt($(this).html().replace(/[$,]/g, "")); });
if (price >= 100){$('#shopcart-offer').show();}
$('.shopCartCellItem').each(
		function(i){
			switch($(this).html()){
				//name of product how it appears in cart, number of image in products dir on server
				case 'Color Copies - Try it!': img = "15301";
					break;
				case '3.5" x 4.25" Memo Pads': img = "15364";
					break;
				default: img ="11108";
			}
			$(this).append('<img class="listPage_categoryImage" style="margin:0 auto;" src="/sites/952/images/products/' + img + '_thumb.jpg"/>');
		});
//end shopcart images/////////// 