$(document).ready(function()
{
	$('#default-section').show();
	$('select#industry').change(function()
	{
		if($(this).val() == 'choose')
		{
			$('.hidden-section').show();
		}
		else
		{
			if($('#association-section').length > 0) // Checks if on Our Clients Page
			{
				showSection($(this).val());
			}
			else 
			{
				showExperiences($(this).val());
			}
		}
	});
});

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