// JavaScript Document

		jQuery(function(){
			jQuery('li.headlink').hover(
				function(){ jQuery('ul', this).css('display', 'block'); },
				function(){ jQuery('ul', this).css('display', 'none');}
			);
		}); 
