$(document).ready(function() {

    $("#shortenerUrl").val('');

    $("#shortenerLink").click(function() {
        $.getJSON("/ajax/shortenUrl.php", { url: $("#shortenerUrl").val() }, function(data, textStatus) {
            if (textStatus == "success") {
                if (data.status == 'OK') {
                    $('#shortLink').html('shortened url: <b><a href="' + data.URL + '" target="_blank">' + data.URL + '</a></b><br />get your stats at <a href="' + data.URL + '+">' + data.URL + '+</a><br />you may now <a href="http://twitter.com/home?status=' + escape(data.URL) + '" target="_blank">tweet this</a> directly on twitter');
                    $('#shortLink').css('display', 'block');
                } else {
                    $('#shortLink').html(data.status);
                    $('#shortLink').css('display', 'block');
                }
            }
        });
    });

    $("#imprint").click(function() {
        fenster = window.open('http://www.sw-is.de', "imprint", "width=600,height=400,status=no,location=no,scrollbars=yes,resizable=yes");
        fenster.focus();
    });
});
