$(function() {
	$('#navigation ul ul').each(function() {
		/* IE FIX */
		$(this).find('> li').css('width', ($(this).width() - 20) + 'px');
	});

	$('#navigation li').bind('mouseenter', function() {
		$(this).find('> ul').show();
	}).bind('mouseleave', function() {
		$(this).find('> ul').hide();
	}).bind('click', function(e) {
		e.preventDefault();
		e.stopPropagation();
		var href = $(this).find('> a').attr('href');
		if (href != 'javascript:;' && href != '#') {
			window.location.href = href;
		}
	});
});
