﻿(function($){
	
	$(function(){
		$(".MenuItem").hover(
			function() {
				$(this).find(">.SubMenuBar").stop(true, true).fadeIn(100);
			}, 
			function() {
				$(this).find(">.SubMenuBar").stop(true, true).fadeOut(150);
			}
		);
	});

}(jQuery));
