// JavaScript Document
$(document).ready(function()
		{
			$(".voto").click(function()
		    {
			$(this).next("div.vusu").slideToggle(300).siblings("div.vusu").slideUp("slow");
		});
		});			

$(document).ready(function() {
	$('#txtentrada').mouseenter(function() {
		$('#entrada').slideDown('fast');
	});
	$('#entrada').mouseleave(function() {
		$('#entrada').slideUp('fast');
	});
});
jQuery(document).ready(function($) {
        $(".tweet").tweet({
          join_text: "auto",
          username: "realmadrid",
          avatar_size: 24,
          count: 6,
          auto_join_text_default: ",", 
          auto_join_text_ed: "we",
          auto_join_text_ing: "we were",
          auto_join_text_reply: "we replied",
          auto_join_text_url: "we were checking out",
          loading_text: "cargando tweets..."
        });
 })
