// JavaScript Document
$(document).ready(function(){
	$("a[rel^='prettyPhoto']").prettyPhoto({theme: 'facebook'});
	$('#tagoSphere').tagoSphere();
	sigla();
});

function sigla(id){
	$("#sigla").load("sigla.php", {sigla: id}, function(response){														
							  $(this).unbind()
							   .empty()
							   .hide(0)
							   .show()
							   .html(response);
				});
}
