// jQuery Ajax - Oia.la

	 $(function() {
  $("input#criarURL").click(function() {
	var url = $("input#url").val();
   	if (url == "Cole seu link aqui!" || url == "") {
	  $("div#erro").fadeIn("slow");
				$("a#fecha").click(function () {
    			$("div#erro").fadeOut("medium"); });
	return false; } else { 
	
	 $.ajax({
      url: "do.php",
      global: false,
      type: "POST",
 	  data: 	"link=" + url,
      success: function(novo){
        	$("div#resultado").show("slow");
			$("div#resultado").html("<input name='link' class='resultado' type='text' value='"+novo+"' onmouseover='this.focus();this.select()' style='float: left; margin-right: 5px;' /> <div style='float: right;'><div class='c' id='a' title='"+url+"'><a>ver original</a></div><br /><br /><div class='b'><a rel='nofollow' href='"+novo+"' target='_blank'>abrir</a></div><div class='b'><a rel='nofollow' href='http://twitter.com/home/?status="+novo+"' target='_blank'>twittar</a></div></div>");
			$(function() {$('#a').tipsy({fade: true}); });
			} 
   }) }     return false;  }); 

	 $("input#verificarURL").click(function() {
var url = $("input#url").val();
		if (url == "Cole seu link aqui!" || url == "") {
	  $("div#erro").fadeIn("slow");
				$("a#fecha").click(function () {
    			$("div#erro").fadeOut("medium"); });
	return false;
        } else { 
	
	 $.ajax({
      url: "do.php",
      global: false,
      type: "POST",
 	  data: 	"link=" + $("input#url").val(),
      success: function(novo){
        	$("div#resultado").show("slow");
			$("div#resultado").html("<input name='link' class='resultado' type='text' value='"+novo+"' onmouseover='this.focus();this.select()' style='float: left; margin-right: 5px;' /> <div style='float: right;'><div class='c' id='a' title='"+url+"'><a>ver original</a></div><br /><br /><div class='b'><a rel='nofollow' href='"+novo+"' target='_blank'>abrir</a></div><div class='b'><a rel='nofollow' href='http://twitter.com/home/?status="+novo+"' target='_blank'>twittar</a></div></div>");
			$(function() {$('#a').tipsy({fade: true}); });
			}
   })}   	});	});
  
