$(document).ready(function() {
  // Add text in url box
  $("#url").val("enter address...");
  $("#url").css({'color' : 'grey'});
  
  // Clear text in url box
  $("#url").focus(function() {
    if ( $.trim($(this).val()) == 'enter address...') {
      $(this).val('');
      $(this).css({'color' : 'black'});
    }
  });
  
  $("#url").blur(function() {
    if ( $.trim($(this).val()) == '') {
      $(this).val('enter address...');
      $(this).css({'color' : 'grey'});
    }
  });
  
  // Hide results box
  $("#mp3link").hide();
  
  // Send AJAX
  $("#getMP3").submit(function() {
    $("#mp3link").html("<div class='loading'>Loading...</div>");
    $("#mp3link").slideDown(500);
    $.post("process.php", {'url' : $("#url").val(), 'ajax' : 'true'}, function(html){
        $("#mp3link").html(html);
      }, "html");
    return false
  });
});