jQuery(document).ready(
   function(){	jQuery(".tab_content").not(":first").hide();	jQuery("#ficha_tabs li:first").addClass("active");	jQuery("#ficha_tabs li").click(function(event){	   jQuery(".tab_content").hide();	   	   jQuery("#ficha_tabs li").removeClass("active");	   jQuery(this).addClass("active");	   jQuery(jQuery(this).children("a").attr("href")).show();	   	   event.preventDefault();	});	}
);

Liferay.Portlet.ready(

	/*
	This function gets loaded after each and every portlet on the page.

	portletId: the current portlet's id
	jQueryObj: the jQuery wrapped object of the current portlet
	*/

	function(portletId, jQueryObj) {
	}
);

jQuery(document).last(

	/*
	This function gets loaded when everything, including the portlets, is on
	the page.
	*/

	function() {
	}
);