
wdRelated = function() {
	if ( $("#ordering").length > 0 ) { 
		var shop = document.forms['prod_detail_form'].storeid.value;
		var section = document.forms['prod_detail_form'].s.value;
		var isScriptedPage = false;
		$("#related_prods").before("<div id=\"op-title\" style=\"font-size: 16px; color: #676; font-weight: bold;padding: 1px 4px 1px 0px;text-align: right;background-color: #fffdcd;border: 1px solid #ccc;	letter-spacing: 1px;margin: 0 0 15px 0px;\">Related Products</div>");
		$.getScript("http://vanamburggroup.com/wdrelated.php?StoreID="+shop+"&SectionID="+section+"", function(){
			var a = displayProducts();
			$("#related_prods").append( a );
			$("td[width=240]").append("<div style=\"margin: 40px 10px 20px; \"><a href=\""+shop+"/"+section+"\"><img src=\"http://www.wheedesign.com/images/more-badge.png\" /></a></div>");
		});
	}
}



