$(document).ready(function(){
	$('UL.tree_menu LI[@LEVEL=2]')
		.hover(function(){ $(this).addClass('hover') ; },function(){ $(this).removeClass('hover') ; })
		.click(function(){
			top.location.href	=	$(this).attr('URL') ;
	});
	$('UL.tree_menu LI[URL]').each(function(){
		if	($(this).hasClass('hover')) {
			$(this).unbind().css('cursor','default') ;
		}
	}) ;
}) ;
function	act() {
	document.CSI.submit() ;
}
