$(document).ready(function() {
	$('#contact').hide();
	$('#products').hide();
	$('#members').hide();
	$('#homeButton').click(function() {
		$('#contact').hide();
		$('#products').hide();
		$('#members').hide();
		$('#content').show()
	});
	$('#productButton').click(function() {
		$('#content').hide();
		$('#contact').hide();
		$('#members').hide();
		$('#products').show();
	});
	$('#locationButton').click(function() {
		$('#content').hide();
		$('#products').hide();
		$('#members').hide();
		$('#contact').show();
	});
	$('#memberButton').click(function() {
		$('#content').hide();
		$('#products').hide();
		$('#members').show();
		$('#contact').hide();
	});
});
