(function ($) {
	
	$(function () {
		$('#navigation > ul > li').hover(function () {
			$(this).find('.submenu').show();
			$(this).find('a:eq(0)').addClass('hover');
		}, function () {
			$(this).find('.submenu').hide();
			$(this).find('a:eq(0)').removeClass('hover');
		});
	})

})(jQuery)
