$(document).ready(function() {
  $('#short').focus(function() {
    $(this).select();
  });

  $("#body").css('display', 'block');
  $("#body_bottom").css('display', 'block');
  $("#noJS").css('display', 'none');
})

function gotoURL(loc) {
  top.location.href = 'http://' + loc;
}

function shortenURL() {
  var d = new Date();
  $.get('http://therebegremlins.com/shorten.php', {q: $('#urlfield').val(), time: d.getTime()},
    function(data){
      if(data == 'error') {
        $('#short').val('Bad URL');
      } else {
        $('#short').val(data);
      }
    }
  );
}

function tweetthis() {
  var d = new Date();
  $.get('http://therebegremlins.com/shorten.php', {q: $('#urlfield').val(), time: d.getTime()},
    function(data){
      if(data == 'error') {
        $('#short').val('Bad URL');
      } else {
        top.location.href = 'http://twitter.com/home?status=' + data;
      }
    }
  );
}

