$(document).ready(function(){
// twitter
if( $("#twitter-feeds").length ) {
	$("#twitter-feeds").tweet({
          username: "jtourton",
          count:5,
          loading_text: "carregando tweets..."
    });	
}	

if( $(".ctwitter").length ) {
	$(".ctwitter").each(function() {
		$u = $(this).attr("href");
		$utwit = $u.replace("http://@", "http://www.twitter.com/");
		$(this).attr("href", $utwit);
		$t = $(this).text();
		$t =  $t.replace("http://@", "@");
		$(this).text($t);
	});
}
	$('.widget_archive select').customStyle();
	$(".widget_archive select").attr("onChange", "");
	$(".widget_archive select").change(function() {
		var url = $(this).val();
		$("#archive_list").load(url);
		return false;
	});


});
