(function($) {
  $(document).ready(function() {

  openLinksInThickbox();

  });  
})(jQuery);

function openLinksInThickbox() {

  // amend hrefs of login links so that the login page opens using thickbox
  $("a[href*='/login']").each(function() {
    var href=$(this).attr("href");
    href += "?SQ_DESIGN_NAME=thickbox&Modal=true&KeepThis=true&TB_iframe=true&height=400&width=350";
    $(this).attr({href: href}).addClass("thickbox");
  });

  // amend hrefs of links to the Edit my profile page so that it opens using thickbox
  $("a[href*='/edit-my-profile']").each(function() {
    var href=$(this).attr("href");
    href += "?SQ_DESIGN_NAME=thickbox&KeepThis=true&TB_iframe=true&height=500&width=650";
    $(this).attr({href: href}).addClass("thickbox");
  });

};