// JavaScript Document
function loadCat(tdsid) {
  $.ajax({
	dataType: "html",
	type: "GET",
	url: "http://www.diamondcrosses.co.uk/wp-content/themes/tds/proxy.php?tdsid=" + tdsid,
	cache: false,
	success: function(data) {
		document.getElementById("imgholder").innerHTML = data;
	}
  });
}
function loadurl(url) {
  top.location.href = url;
}

