menufix.js 263 Bytes
$(document).ready(function() {
	if (PrimeFaces.getCookie("moyaLeftMenu") != null) {
		var menuToExpand = PrimeFaces.getCookie("moyaLeftMenu").split(",");
		for (i = 0; i < menuToExpand.length; ++i) {
			$("#" + menuToExpand[i]).css("display", "block");
		}
	}
});