// JavaScript Document

jQuery(document).ready(function(){
	jQuery('#head_nav li').hover(
		function() { jQuery('ul', this).css('display', 'block'); },
		function() { jQuery('ul', this).css('display', 'none'); });
});
