jQuery(document).ready(function($) {
	$('#navigation a').click(function() {
		var $ul = $('ul', $(this).parent());

		if ($ul.length) {
			location.href = $('a:first', $ul).attr('href');
			return false;
		}
	});
});
