$(document).ready(function() {
	$("#upload").click(function() {
		$.ajaxUpload({
			uploadform:document.f,
			url:'plugins/subir-imagenes/ajax.php',
			secureuri:false,
			dataType:'json',
			success:function(msg){
				if (msg.success == 0) {
					alert(msg.message);
					return false;
				}
				else {
					$("#link").attr("href",msg.file);
					$("#image").attr("src",msg.file);
					$("#pagina-c").val('<a href="http://www.joombly.com/subir" title="Subir Imagenes"><img src="'+ msg.file +'" /></a>');
					$("#fondo-mosaico-c").val("<style>body{background-image: url("+ msg.file +");background-repeat:repeat;}</style>");
					$("#fondo-centrado-c").val("<style>body{background-image: url("+ msg.file +");background-position:center;background-attachment:fixed;background-repeat:no-repeat;}</style>");
					$("#bb-code-c").val("[URL=http://www.joombly.com][IMG]"+ msg.file +"[/IMG][/URL]");
					$("#direct-link-c").val(msg.file);
					
					$("#result").show();
    			}
			}			
		});
	});
	
	$("textarea").click(function() {
		$(this).focus();				
		$(this).select();	
	});
	$("input").click(function() {
		$(this).focus();				
		$(this).select();	
	});
});