// $Id: thickbox_login.js,v 1.1.2.2 2007/04/06 08:55:31 frjo Exp $
// Contributed by user jmiccolis.
$(document).ready(function() { 
  $("a[@href*='/user/login']").addClass('thickbox').each(function() { 
    this.href = this.href.replace(/user\/login\??/,"user?thickbox=true&height=252&width=372&TB_iframe=true") 
    this.href = this.href.replace(/http:/,"https:"); 
    this.title = '';
  });
  $("a[@href*='?q=user/login']").addClass('thickbox').each(function() { 
    this.href = this.href.replace(/user\/login/,"user?thickbox=true&height=252&width=372&TB_iframe=true") 
    this.href = this.href.replace(/http:/,"https:"); 
    this.title = '';
  }); 
});

