$("document").ready(function() {
  $("a.new-window").click(function() {
    window.open(this.href);
    return false;
  });
  $("a[class=showimages]").click(function() {
    $("div#ajaxedit").html("Loading...");
    var call = "http://www.willowfieldnursery.co.uk/ajax.php?function=upload";
    $("div#ajaxedit").load(call);
    return false;
  });
  $("a[class=edit]").click(function() {
    $("div#ajaxedit").html("<center>Loading...</center>");
    var call = "http://www.willowfieldnursery.co.uk/ajax.php?function=edit_page&params="+this.id;
    $("div#ajaxedit").load(call);
    return false;
  }); 
  $("a[class=del]").click(function() {
    return confirm("Are you sure you want to delete this page?");
  }); 
  $("a[class=add]").click(function() {
  	$("div#ajaxedit").html("Loading...");
    var call = "http://www.willowfieldnursery.co.uk/ajax.php?function=add_page";
  	$("div#ajaxedit").load(call);
  	return false;
  });
  $("input#insert_img").click(function() {
  	var img_code = prompt("Paste code from the show images page", "");
  	if(img_code != null)
  		$("textarea#content").val($("textarea#content").val() + "\n" + img_code);
  	return false;
  });
  });
