// JavaScript Document
 $(document).ready(function(){
       	$("#buscabt").click(function(){
			if ($("#busca").is(":hidden")) {
				$("#busca").slideDown("fast");
			} else {
				$("#busca").slideUp("fast");
			}
		});
		
	$('#menulateral li a').hover(function() { //mouseover
		$(this).animate({
			//'color': 'rgb(131,131,131)',
			'paddingLeft': '12px'
		},300);
	},function() { //mouseout
		$(this).animate({
			//'color': 'rgb(2,41,77)',
			'paddingLeft': '7'
		},200);
	});






		//twt
		$("#twitter .content").tweet({
            username: "fabricahost",
            join_text: "auto",
            count: 5,
            auto_join_text_default: "",
            auto_join_text_ed: "",
            auto_join_text_ing: "",
            auto_join_text_reply: "",
            auto_join_text_url: "",
            loading_text: "Carrendo tweets..."
        });


 });

