$(document).ready(function(){
    //Elementos de la barra superior
    $("ul.top-bar-desc-share").hide();

	$("div#top-bar ul li.share").hover(
		function() {
			$("ul.top-bar-desc-share").fadeIn("normal");
		},
		function() {
			$("ul.top-bar-desc-share").fadeOut("normal");
		}
	);
	
	$("ul.top-bar-desc-rss").hide();

	$("div#top-bar ul li.rss").hover(
		function() {
			$("ul.top-bar-desc-rss").fadeIn("normal");
		},
		function() {
			$("ul.top-bar-desc-rss").fadeOut("normal");
		}
	);
	
	$("ul.top-bar-desc-twitter").hide();

	$("div#top-bar ul li.twitter").hover(
		function() {
			$("ul.top-bar-desc-twitter").fadeIn("normal");
		},
		function() {
			$("ul.top-bar-desc-twitter").fadeOut("normal");
		}
	);

	$("ul.top-bar-desc-flickr").hide();

	$("div#top-bar ul li.flickr").hover(
		function() {
			$("ul.top-bar-desc-flickr").fadeIn("normal");
		},
		function() {
			$("ul.top-bar-desc-flickr").fadeOut("normal");
		}
	);
	
	$("ul.top-bar-desc-lastfm").hide();

	$("div#top-bar ul li.lastfm").hover(
		function() {
			$("ul.top-bar-desc-lastfm").fadeIn("normal");
		},
		function() {
			$("ul.top-bar-desc-lastfm").fadeOut("normal");
		}
	);
	
	//Quitamos el estilo a los elementos de Google Reader
	

 });
