// JavaScript Document

$(function() {

	$('#main_nav li').hover(
        function () {
            //show its submenu
            $('ul', this).stop().show();
 
        },
        function () {
            //hide its submenu
            $('ul', this).stop().hide();        
        }
    );
	
});
