// ==UserScript==
// @name           Badoo Enhancer
// @namespace      blog.alekc.org
// @description    Badoo Enhancer
// @author 		Alekc (alekcander@gmail.com)
// @version 	1.0
// @include       http://eu1.badoo.com/*
// @require       http://code.jquery.com/jquery-latest.js
// ==/UserScript==

$(document).ready(function() {
	if ($("span.access.presence").length>0){
		//trovo tutti link
		$("div.user_contact a.name").each(function(){
			var id = "0" + $(this).attr("id").substr(3);
			$(this).attr("href","http://eu1.badoo.com/" + id + "/");
			$(this).after("<a href='http://eu1.badoo.com/" + id + "/' class='name'>" + $(this).html() + "</a>");
			$(this).hide();
			$(this).parent("span").after(" [" + $(this).attr("title") + "] Eta: ");
		});
		//nascondo lucchetto
		$("span.presence.access").hide();
		
		//nascondo superpotere in basso 
		$("a.pager_spp").hide();
	}
});
