$(document).ready(function() {
  $("div.image").each(function() {
    var url = 'http://yfrog.com/' + $(this).attr('id') + ':iphone';
    $(this).qtip({
      content: '<img src="' + url + '"/>',
      position: {
        corner: {
          target: 'rightMiddle',
          tooltip: 'leftMiddle',
        },
        screen: true,
      },
      show: {
        delay: 0,
      },
      style: {
        width: {
          max: 600,
        },
      },
    });
  });

  $("#search").autocomplete('/ajaxsearch', {
    matchContains: true,
    minChars: 3,
    selectFirst: false,
  });

  $("#search").result(function(event,data,formatted) {
    window.location("http://idrankthis.com/search/" + formatted);
  });
});
