jQuery(document).ready(function()
{
    jQuery('a.thickbox').each(function(i)
    {
        var href = jQuery(this).attr('href');
        
        if (!href)
        {
            return;
        }
        
        if (!href.match(/\?/))
        {
            href += '?';
        }
        
        href = href.replace(/\?/, '?ajax&');
        
        jQuery(this).attr('href', href);
    });
});

jQuery.fn.load_photos = function()
{
    value = jQuery(this).attr('value');
    if (!value)
    {
        return false;
    }
    
    window.location = value;
}