// Submenu --------------------------------------
$(document).ready(function(){
	$("#navigation li").hover(function(){
		$(this).children("ul.sub").stop(true, true);
		$(this).children("ul.sub").fadeIn(600);
		},function(){
			$(this).children("ul.sub").fadeOut(600);
	});
});
//-----------------------------------------------

