/* used to synchronously sleep a script */
jQuery.prototype.sleep = function() {
  jQuery.ajax({type: "GET",url: "/javascripts/jquery/sleep.js",async: false}); /* url to this file(self) */
  return this;
}