// ==UserScript==
// @name           Bypass Orkut Cache
// @author         Ozéias Sant'ana
// @namespace      http://www.railsbox.org
// @version        0.1.0
// @license        Released under the MIT license
// @include        http://prod.sandbox.orkut.com/*
// @include        http://sandbox.orkut.com/*
// @description    Disable orkut caching mechanism.
// ==/UserScript==

var url = document.getElementsByTagName("a");

for(var t = 0; t < url.length-1; t++) {
  if((url[t].href).indexOf("Main#Application")>-1)
    url[t].href+="&bpc=1";
}