function showSection(thesection)
{
	var thesection = "#" + thesection + "-section";
	$('.hidden-section').hide();
	$(thesection).show();
}
function showExperiences(industry)
{
	var industry = "." + industry + "-section";
	$('.hidden-section').hide();
	$(industry).show();
}