$(function() {
    $('#bottomNav a').click(function(e) {
		e.preventDefault();
		var target = $(this).attr('id');
        $('#bottomNav li').removeClass('on');
		$(this).parent().addClass('on');
		$('.bottomNav').hide();
		$('.'+ target).show();
	});
});