/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

function change_tb_href()
{
  var qString = $("a.thickbox").attr('rel');
  $("a.thickbox").attr('href', '#TB_inline?' + qString);
}

//$(function(){
//  change_tb_href();
//});

$(function() {
    if ($('a.thickbox').hasClass('inline')) {
        change_tb_href();
    }
});