$(function(){
	$('#navigation li').each(function(){
		if($(this).find('ul#subnavigation').length == 0) {
			$(this).addClass('clickable').click(function(){
				window.location.href = $(this).find('a:first').attr('href');
			});			
		}
	});
	$('.auto-hitarea-expand').each(function(){
		if ($(this).find('a').length > 0)
			$(this).click(function(){
					window.location.href = $(this).find('a:first').attr('href');
			});			
		else $(this).removeClass('auto-hitarea-expand');
	});
})