// JavaScript Document

$(document).ready(function(){
	{
		// mac firefox rev1.8 or older.
		$("#li101,#li102,#li104").hover(
			function(){
				if ($(this).children("ul:animated").length > 0) {
					return;
				}
				$(this).children("ul").slideDown(700);
			},
			function(){
				$(this).children("ul").slideUp(700);
			}
		);
	}
});

