// MENU - DROP NAV
$(document).ready(function() {
	

	// Menu controls
	$('#dropnav> li').hover(function() {
		_id = $(this).attr("id");
		$(this).find('img').attr("src","img/" + _id + "-on.gif");
		$(this).find('ul').css('visibility', 'visible');
		$(this).find('ul > li > ul').css('visibility', 'hidden');
		}, function() {
			$(this).find('img').attr("src","img/" + _id + "-off.gif");
			$(this).find('ul').css('visibility', 'hidden');
		});
			
		//# Second level
		$('#dropnav > li > ul > li').hover(function() {
				$(this).find('ul:first').css('visibility', 'visible');

			}, function() {
				$(this).find('ul').css('visibility', 'hidden');
			});

	
		
	// start menus in slide up position
	//$('#dropnav > li').find('ul').slideUp(1);
	$('#dropnav > li > ul').find('li:last-child > a').css('margin-bottom','8px');
	
	// highlight any with sublevel and bump it up a bit for alignment.
	$('#dropnav > li > ul').find('li:has(ul)').each( function() {
		$(this).find('a:first').addClass('hasNextLevel');
		pos = $(this).find('ul:first').position();
		if (pos) {
			newpos = pos.top - 25;
			$(this).find('ul:first').css('top', newpos);
		} else {
			alert('here');
		}

	});

 });
