/* Lightbox style administration login, similar to what reddit offers 
 * new version uses jQuery and is still cooler for me having written it
 */

jQuery(function() {
    jQuery('div#login a.login').click(function() {
        jQuery('#overlay').show();
        jQuery('#loginpopup').show()
        jQuery('#id_username').get(0).focus();
    });
    jQuery('div#overlay').click(function() {
        jQuery('.popup').hide();
        jQuery('#overlay').hide();
    });
});
