/* /scripts/nav-custom-2009.js */

$(document).ready( function () {
	$('#nav-menu > ul > li').css('width', '10em');
	/* $('#nav-menu li').css('height', '16px'); */
	$('#nav-menu ul ul').hide();
	var offset = 0;
	var li_height = $('#nav-menu li').css('height').match(/^([\d.]+)(\w*)$/);
	var li_height_scalar = Number(li_height[1]);
	var li_height_unit = li_height[2];
	
// 			$('#nav-menu ul ul').each( function () {
// 				offset += li_height_scalar;
// 				var mt = '-' + li_height[0]; /* '' + (-offset) + li_height_unit; */
// 				// alert('offset: ' + offset + ', margin-top: ' + mt);
// 				$(this).css('margin-top', mt);
// 			} );
	$('#nav-menu > ul > li').mouseout(function () { $('ul', this).hide(); });
	$('#nav-menu > ul > li').mouseover(function () { $('ul', this).show(); });
} );

