/* adds the hover events to the sgi button */


$(document).ready(function()
{
	$("#sgi-menu li").hover(
	function() {
		// show the sub menu
		$("ul", this).slideDown(100);
	},
	function() {
		// hide the sub menu
		$("ul", this).slideUp(100);
	});
});		
