$(function() {
	$("#themeWcmLeftNav li.flyout ul").hover(flyOver,flyOut);
})

function flyOver() {
	$(this).parents("li:last").children("a").addClass("parent");
}

function flyOut() {
	$(this).parents("li:last").children("a").removeClass("parent");
}
