/* Produtos */

function show_lajes(){
	$(".sub_lajes").slideDown('slow');
	document.getElementById("btn_lajes").onclick = function(){hide_lajes()};
	}

function hide_lajes(){
	$(".sub_lajes").slideUp('slow');
	document.getElementById("btn_lajes").onclick = function(){show_lajes()};
	}
	
function show_concreto(){
	$(".sub_concreto").slideDown('slow');
	document.getElementById("btn_concreto").onclick = function(){hide_concreto()};
	}

function hide_concreto(){
	$(".sub_concreto").slideUp('slow');
	document.getElementById("btn_concreto").onclick = function(){show_concreto()};
	}

function show_ceramica(){
	$(".sub_ceramica").slideDown('slow');
	document.getElementById("btn_ceramica").onclick = function(){hide_ceramica()};
	}

function hide_ceramica(){
	$(".sub_ceramica").slideUp('slow');
	document.getElementById("btn_ceramica").onclick = function(){show_ceramica()};
}
/*Fim Produtos */

/*Função Subir*/
 $(document).ready(function() {
       $('#subir').click(function(){ 
          $('html, body').animate({scrollTop:0}, 'slow');
      return false;
 
         });
     });
/*FIM*/

$(document).ready(
	function(){                    
	$('#galeriaBanner').innerfade({
	speed: 2000,
	timeout: 10000,
	type: 'sequence',
	containerheight: '353px'
	});                                    
});

/*Input File*/
$("#arquivo").change(function() {
	var aux = $(this).val().split("\\");
	aux = aux.reverse();
	$(this).prev().html(aux[0]);
});

