// JavaScript Document
//function show(secao) {
	//if (secao.style.display == "none") {
		//secao.style.display = "block";
//	} else {
	//	secao.style.display = "none";
//	}
//}


// shows the slickbox DIV on clicking the link with an ID of "slick-show"
$('a#show_historia').click(
	function() {
    	$('#hist_conteudo').show('slow');
    	return false;
  	}
);


$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
 //$('#hist_conteudo').toggle(400);
 //$('#hist_conteudo').hide();
 //$('#trabalhos_conteudo').hide();
 //$('#curriculo_conteudo').hide();
 // shows the slickbox on clicking the noted link  
 // $('a#show_historia').click(function() {
 //   $('#hist_conteudo').show('slow');
 //   return false;
 // });
 // hides the slickbox on clicking the noted link  
 // $('a#slick-hide').click(function() {
 //  $('#slickbox').hide('fast');
 //   return false;
 // });
 
 // toggles the slickbox on clicking the noted link  
  $('a#show_historia').click(function() {
    $('#hist_conteudo').toggle(400);
    return false;
  });
  $('a#show_trabalhos').click(function() {
    $('#trabalhos_conteudo').toggle(400);
    return false;
  });
  $('a#show_curriculo').click(function() {
    $('#curriculo_conteudo').toggle(400);
    return false;
  });
});

//// lightbox jquery
$(function() {
        $('#gallery a').lightBox();
    });
    




