﻿jQuery(function () {
    jQuery('ul#MenuBar1 li').each(function () {
        jQuery(this).hover(function () {
            jQuery(this).children('ul').show();
        }, function () {
            jQuery(this).children('ul').hide();
        });
    });
	

});
