var loadingImg = "<img src=\"/site/images/loading.gif\" alt=\"Loading, please wait\" />";
var url = "/include/specialsxml.jsp?code=";
$.post(url + code + "&region=" + region + "&category=" + category + "&pagePath=" + pagePath, function(data, textstatus){
	var result = "<h3 class=\"msg\">Unfortunately there are currently no specials available matching your criteria</h3>";
	if (textstatus=="success"){
		result = $('specialdata', data).text();
	}
	$("#xmlfeed p").replaceWith(result);
},"xml");