function searsJSONFeed(data){

	var dodApiEg = '';
	var n=0;

function calculate_savings(cost, sale) {
			cost *= 100;
			sale *= 100;

			return ((cost - sale) / 100).toFixed(2);
		}

	$.each(data.products, function(i,product){
			
		//set sale price as dollar format
		var sale = parseFloat(product.SalePrice);
		sale = sale.toFixed(2);  //only allow 2 digits after the decimal place
			
		//set reg price as dollar format
		var reg = parseFloat(product.RegularPrice);
		reg = reg.toFixed(2); //only allow 2 digits after the decimal place

		//function to calculate the save price
		var save = calculate_savings(reg, sale);


		//evergreen HTML
		if (n == 0) {
			dodApiEg += '<div id="dodApiImg">';
			dodApiEg += '<a href="/shc/s/dap_10153_12605_DAP_WOW+Specials"><img src="' + product.MainImageUrl + '?hei=115&wid=115&op_sharpen=1&resMode=sharp&op_usm=0.9,0.5,0,0" alt="Deal of the Day" /></a>';
			dodApiEg += '</div>'; //end #dodApiImg
			dodApiEg += '<div id="dodApiCopy">';
			dodApiEg += '<a href="/shc/s/dap_10153_12605_DAP_WOW+Specials" class="dodApiDesc">'+product.BrandName+' '+product.DescriptionName+'</a>';
			dodApiEg += '<a href="/shc/s/dap_10153_12605_DAP_WOW+Specials" class="dodApiSale">$'+sale+'</a>';
			dodApiEg += '<a href="/shc/s/dap_10153_12605_DAP_WOW+Specials" class="dodApiSave">Save $'+save+'</a>';

			dodApiEg += '<a href="/shc/s/dap_10153_12605_DAP_WOW+Specials" class="dodApiReg">Reg. $'+reg+'</a>';
			dodApiEg += '</div>'; //end #dodApiCopy
			dodApiEg += '<a href="/shc/s/dap_10153_12605_DAP_WOW+Specials" class="dodApiPromo">Online Only</a>';
			dodApiEg += '<a class="dodApiGiN" href="/shc/s/dap_10153_12605_DAP_WOW+Specials"> <img src="/ue/home/DOD_API_HP_EG_buttonV2.gif" alt="Get it Now" /></a>';

			n++;
		}
			
	});
	$('#arsEvergreen').html(dodApiEg);
}
	
$(document).ready(function() {
	$.getJSON("http://pool.datastore.arsecom.com/pool/shcapi/custom/srs_dod_schedule.php?JSONcallback=?", function(data){ 
		searsJSONFeed(data);
	});
}); //end document ready


