$(init);

function init() {

  $("body").addClass("js");

  $("form.userform").each(
    function() {
      FormRegistry.init($(this));
    }
  );

  if ($("body").id() == "index") {
    $("div.block")
      .prepend('<img src="client/images/block_top.gif" alt="" />')
      .append('<img src="client/images/block_bottom.gif" alt="" />');
  }
  else {
    $("div.block")
      .prepend('<img src="client/images/inner_block_top.gif" alt="" />')
      .append('<img src="client/images/inner_block_bottom.gif" alt="" />');
  }

}

if (window.attachEvent) {
  document.execCommand("BackgroundImageCache", false, true);
}