// Inicia os elementos

jQuery.noConflict();

jQuery(document).ready(function(){
	jQuery('.acoesBarra a').click(
	
		function() {
			
			if(jQuery(".cabecalho").css("marginTop") == "-330px"){
				jQuery(".cabecalho").animate({ marginTop: "+=299px"}, 800 ); 
				jQuery(".expandirBarra").html('recolher');
				jQuery(".acoesBarra a").css('backgroundImage','url("img/cabecalhoBotao2.png")');
			}else{
				jQuery(".cabecalho").animate({ marginTop: "-=299px"}, 800 ); 
				jQuery(".expandirBarra").html('expandir');
				jQuery(".acoesBarra a").css('backgroundImage','url("img/cabecalhoBotao.png")');	
			}
		}
	);

	
});

