jQuery(document).ready(function()
{
    jQuery('#content-text div.photos, #content-text ul.org_routamc_photostream_photos, ul.stara-photos').find('a').each(function(i)
    {
        var title = jQuery(this).attr('title');
        
        if (!title)
        {
            return;
        }
        
        jQuery(this).attr('href', title);
        jQuery(this).attr('title', '');
    });
    
    jQuery('#content-text table.materials a').each(function(i)
    {
        jQuery(this).attr('href', jQuery(this).attr('href') + '?ajax');
    });
    
    // jQuery('#content-text div.photos').thickbox();
});
