var toggle = 0;
function thingymove() {
    var tw = $(window).width() - 10;
    var th = $(window).height() - 10;
    if (toggle == 0) {
        $('#logo').animate(
            {
                left:tw,
                top:th,
                height:'10',
                width:'10'
            },
            1200
        );
        toggle = 1;
    }
    else {
        $('#logo').animate(
            {
                left:'20',
                top:'35',
                height:'30',
                width:'30'
            },
            1200,
            function() {
                window.location.href = 'http://www-student.lboro.ac.uk/~cosa2';
            }
        );
        toggle = 0;
    }

}
$(document).load(function() {
    $.getJSON("http://twitter.com/statuses/user_timeline/shameen_.json?callback=?", function(data){$("#twitter").html(data[0].text);});
});
