// ==UserScript==
// @name           orkut friend list
// @namespace      http://rb286.blogspot.com/?orkut friend list
// @description orkut friend list
// @include        http://www.orkut.com*
// @include        http://orkut.com*
// ==/UserScript==

(function() {
    if (window.location.href.match("Profile.") == "Profile." ) {
	window.location.href = window.location.href.replace (/Profile/,'FriendsList');
        }
})();



