// JavaScript Document

jQuery.noConflict();

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

});
