$(document).ready(function() {
	$('#headernav').click(function() {
		var a = $(this).children('a:first');
		if (a.length) {
			window.location = a.attr('href');
		}
	});
});
