var navInit = function() {
	$('#topnav > li > a.dropdown').each(function() {
		var parent = $(this).parent();
		$(parent).mouseenter(function() {
			$(this).find('a.dropdown:eq(0)').addClass('viewing');
			$(this).find('ul.dropdown:eq(0)').show();
		}).mouseleave(function() {
			$(this).find('a.dropdown:eq(0)').removeClass('viewing');
			$(this).find('ul.dropdown:eq(0)').hide();
		});
		
	});
}

$(document).ready(navInit);
