jQuery(document).ready(function(){
	itemHideShow_show('[+]','[-]','Mostrar as informações','Esconder as informações');
	/*
	var item = jQuery("#info-embarque").find(".item-text:gt(1)");
	item.css("display", "block");	
	item.prev().addClass("opened");
	//item.prev().css("background", "#F2F3EF");
	item.prev().attr("title","Esconder as informações");
	item.prev().find(".toggle-button").html("[-]");
	*/
		
});
function itemHideShow_show(open,close,titleopen,titleclose){
	jQuery(".item-text").hide();
	jQuery(".toggle-button").show();
	jQuery(".item-title").click(
		function() {
			if(jQuery(this).hasClass("opened")) {
				jQuery(this).attr("title",titleopen);
				jQuery(this).removeClass("opened");
				
				jQuery(this).parent().find(".item-text").slideToggle("fast");
				jQuery(this).find(".toggle-button").html(open);
			}else {
				jQuery(this).attr("title",titleclose);
				jQuery(this).addClass("opened");
	
				jQuery(this).parent().find(".item-text").slideToggle("fast");
				jQuery(this).find(".toggle-button").html(close);
			};
		});

}