// popout menu
// this script uses the jquery library however
// jQuery.noConflict has been defined as $j to
// prevent conflict with the prototype library framework

$(document).ready(function () {
	$('ul#navMenu li').children().hide();
	$('ul#navMenu li').css('border-bottom','1px solid #666666');
	$('ul#navMenu a').css('display','block');
	if(jQuery.support.boxModel) {
		$('ul#navMenu ul').addClass('showMe');
	}

	$('ul#navMenu').show();
	$('ul#navMenu li').hover(function () {
										 $(this).children().fadeIn('fast');
										 $(this).addClass('hoverMe');
										 },
										 function() {
										 $(this).children().not('a').fadeOut('slow');
										 if($(this).hasClass('hoverMe')) {
											 $(this).removeClass('hoverMe');
										 }
										 });										 
});  //end of document ready function
