// JavaScript Document


$(document).ready(function(){
  $('.btn-metal').click(function() {
  	$('#panel2').hide('slow');
  	$('#panel3').hide('slow');
  	$('#panel4').hide('slow');
  	$('#panel5').hide('slow');
    $('#panel1').toggle(400);
    return false;
  });

  $('.btn-thermal').click(function() {
  	$('#panel1').hide('slow');
  	$('#panel3').hide('slow');
  	$('#panel4').hide('slow');
  	$('#panel5').hide('slow');
    $('#panel2').toggle(400);
    return false;
  });
  
  $('.btn-powder').click(function() {
  	$('#panel1').hide('slow');
  	$('#panel2').hide('slow');  	
	$('#panel4').hide('slow');
  	$('#panel5').hide('slow');
    $('#panel3').toggle(400);
    return false;
  });
  
  $('.btn-welding').click(function() {
  	$('#panel1').hide('slow');
  	$('#panel2').hide('slow');
  	$('#panel3').hide('slow');
  	$('#panel5').hide('slow');	
    $('#panel4').toggle(400);
    return false;
  });    
  
  $('.btn-additional').click(function() {
  	$('#panel1').hide('slow');
  	$('#panel2').hide('slow');
  	$('#panel3').hide('slow');
  	$('#panel4').hide('slow');	
    $('#panel5').toggle(400);
    return false;
  });  	
});
