// JavaScript Document

//$.noConflict();

$(document).ready(function(){
	$('#mainNavi li').hover(
		function() { 
			$('ul', this).slideDown("fast");
			//jQuery('ul', this).show();
		},
		function() { 
			$('ul', this).slideUp("fast");
			//jQuery('ul', this).hide();
		}
	);

});

