function homeNav() {
	var current = null;
	
	if ($('#home-nav')) {
		$('#home-nav > div').hover(function(e) {
			if (current) {
				$('#' + current).removeClass('active');
			}
			if (current !== this.id) {
				$(this).addClass('active');
				current = this.id;
			} else {
				current = null;
			}
        });
	}
}

function homeMore() {
	if ($('#home-more')) {
		$('#home-more').hide();
		$('#home-more-button').click(function(e) {
			if ($(this).html() === 'MORE') {
				$('#home-more').show();
				$(this).html('LESS');
			} else {
				$('#home-more').hide();
				$(this).html('MORE');
			}
		});
	}
}

$(document).ready(function(e) {
	homeNav();
	homeMore();
});
