jQuery(document).ready(function($){
    
    // kill nolinks
    $('a.nolink').click(function() {
        return false;
    });
	
	// toggle display of nested nav
	$('li.head-link').hover(function() {
	    $('ul', this).css('display', 'block');
	}, function() {
	    $('ul', this).css('display', 'none');
	});
	
});
