$(document).ready(function(){
	try {
		$('UL.tree_menu LI[@LEVEL=2]')
			.hover(function(){ $(this).addClass('hover') ; },function(){ $(this).removeClass('hover') ; })
			.click(function(){
				top.location.href	=	'/products?c=' + $(this).attr('UID') ;
		});
		$('UL.tree_menu LI[@LEVEL=1]').find('> UL').hide().end().toggle(function(){ $(this).find('> UL').show(250) ; },function(){ $(this).find('> UL').hide(150) ; }) ;
		$('UL.tree_menu LI[@LEVEL=2][@UID=' + document.CSI.c.value + ']').parent().show().end().unbind().addClass('hover') ;
	} catch(e){} ;
}) ;
function	act() {
	document.CSI.submit() ;
}
