$(document).ready(function() {
    $('a').each(function(){
        if(this.href.match(/user\/login/)){
          $(this).addClass('thickbox');
          $(this).attr({
            href: this.href.replace(/user\/login/,"ajax_register/login")
          });
        }

        if(this.href.match(/user\/register/)){
            $(this).addClass('thickbox');
            $(this).attr({
              href: this.href.replace(/user\/register/,"ajax_register/register")
            });
        }

        if(!is_logged && this.href.match(/\/favorite_nodes\/add\/[0-9]+$/)){
            $(this).addClass('thickbox')
            $(this).attr({
                href: this.href.replace(/(\/favorite_nodes\/add\/[0-9]+)$/, "/ajax_register/register?destination=$1")
            });
        }

        if(!is_logged && this.href.match(/\/node\/[0-9]+\/subscribe\/add$/i)){
            $(this).addClass('thickbox')
            $(this).attr({
                href: this.href.replace(/(\/node\/[0-9]+\/subscribe\/add)$/, "/ajax_register/register?destination=$1")
            });
        }
    });
});


function resizes(y){
	document.getElementById('TB_window').style.height = y+"px";
	//document.getElementById('TB_ajaxContent').style.height = ys+"px";
}

