jQuery(document).ready(function()
{
	if(location.host.indexOf('localhost') != -1 || location.host.indexOf('10.1.91') != -1)   
	{ 
	    $('a').click(function(event)
	    {
	        var this_link = $(this);
	        if(this_link.attr('href').search(/^\//) != -1)
	        {
	            var old_href = this_link.attr('href');
	            var new_href = old_href.replace(/^\//, '/main/');
	            this_link.attr('href', new_href);
	        }
	    });
    }
});
