
// CP Related Prods (version 4) by ThreadYourself.com (inspired originally by Likewise, Cafewish.com - Teesed is the man!)
$(document).ready(function() {
	if ( $("#ordering").length > 0 ) { 
		var shop = document.forms['prod_detail_form'].storeid.value;
		var section = document.forms['prod_detail_form'].s.value;

		$("#related_prods", top.document).before('<iframe style="display:none;width:100%;" id="sectionloader" src="'+shop+'/'+section+'"></iframe>');
		$("#sectionloader").load(function () {
			var sectioncode = $("#sectionloader").contents().find('#main table').html();
			
			$("#related_prods", top.document).append("<table>"+sectioncode+"</table>");
			$("#related_prods", top.document).before("<div class=\"fakehr\"></div><div id=\"op-title\" style=\"color:#333;font-size:19px;font-weight:bold; margin: 0 0 15px 10px;\">Other Popular Products Featuring This Design:</div>")
			$("td[width=240]", top.document).append("<div style=\"margin: 40px 10px 20px; \"><a href=\""+shop+"/"+section+"\"><img src=\"http://www.threadyourself.com/images/more-badge-red.png\" /></a></div>");
			$(".content td a", top.document).css({ float: "none", fontSize: "11px", margin: "0", padding: "0"});
			$("#related_prods td", top.document).css({ padding: "0 0 30px 0"});
			$("div#related_prods span", top.document).css({ display: "none"});
		});
	}
});

