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