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