$(document).ready(function() {
   
   $('#overviewall').hide();
   $('#software123').hide();
   $('#softwarekey').hide();
   $('#softwarecad').hide();
   $('#softwarevis').hide();
   
   
	$('a.show').click(function() {
	$('#software123') + $('#softwarekey') + $('#softwarecad') + $('#softwarevis').show('fast');
		return false;
	});
	
	$('a.hide').click(function() {
	$('#software123') + $('#softwarekey') + $('#softwarecad') + $('#softwarevis').hide('fast');
		return false;
	});
	
	$('span.show').click(function(){
	$('#overviewall').show('fast');
		return false;
	});
	
	$('span.hide').click(function(){
	$('#overviewall').hide('fast');
		return false;
	});
  
	
  $('span.toggleoverviewclose').click(function() {
	$('#overviewall').hide(300);
		return false;
	});
  
	$('span.toggleoverviewall').click(function() {
	$('#overviewall').toggle(300);
		return false;
	});
       
	$('a.toggle123').click(function() {
	$('#software123').toggle(300);
		return false;
	});

	$('a.togglekey').click(function(){
	$('#softwarekey').toggle(300);
		return false;
	});
	
	$('a.togglecad').click(function(){
	$('#softwarecad').toggle(300);
		return false;
	});
	
	$('a.togglevis').click(function(){
	$('#softwarevis').toggle(300);
		return false;
	});
});


$(document).ready(function() {
   
   $('#retro').hide();
   $('#leasing').hide();
   $('#programming').hide();
   $('#inspection').hide();
   $('#calibration').hide();
   $('#training').hide();
   
   
	$('a.show').click(function() {
	$('#retro') + $('#leasing') + $('#programming') + $('#inspection') + $('#calibration') + $('#training').show('fast');
		return false;
	});
  
       
	$('a.hide').click(function() {
	$('#retro') + $('#leasing') + $('#programming') + $('#inspection') + $('#calibration') + $('#training').hide('fast');
		return false;
	});
  
       
	$('a.toggle-retro').click(function() {
	$('#retro').toggle(300);
		return false;
	});

	$('a.toggle-leasing').click(function(){
	$('#leasing').toggle(300);
		return false;
	});
	
	$('a.toggle-programming').click(function(){
	$('#programming').toggle(300);
		return false;
	});
	
	$('a.toggle-inspection').click(function(){
	$('#inspection').toggle(300);
		return false;
	});
	
	$('a.toggle-calibration').click(function(){
	$('#calibration').toggle(300);
		return false;
	});
	
	$('a.toggle-training').click(function(){
	$('#training').toggle(300);
		return false;
	});
});