$(document).ready(function() {
    Custom.init();
    $("div#hint").show('slow');
//    $("div#sshint").show('slow',function() {
//      $("#taginputtext").focus();
//    });
//    $("#URL").focus();
//    $("#URL").select();
    $("a#addtag").click(function(event) {
      event.preventDefault();
      $('div#mainaddtag').toggle(200,function() {
//        $("#taginputtext").focus();
      });
      return false;
    });
    $("a#awikisugtop").click(function(event) {
      event.preventDefault();
      $('div#wikisugtop').toggle(200,function() {
        $("#wikiurltop").focus();
      });
      return false;
    });
    $("a.optionlink").click(function(event) {
      event.preventDefault();
      $('div#mainoption').toggle(200);
      return false;
    });
    $("div.res_item").hover(
      function() {
        $(this).css('background','#f1f1ff');
      },
      function() {
        $(this).css('background','#fdfdfd');
      }
    );
  });
