$(function() {
    //Make entire buttons link rather than just text
    $('#nav li.nav-item').click(function() {
	$target = $($(this).children()).attr('href');
	window.location = $target;
    });

    //Change subnav menus on hover
    $('#nav li.nav-item').mouseover(function() {
	subnavTarget = $(this).attr('name');
	$('#subnav li').css('display', 'none');
	$('#subnav li[parent=' + subnavTarget + ']').css('display', 'inline');
    });

});
