var hiddenCrumbs = null;

$(document).ready(function()
{
		
		// Преключатели
		$("#cText dt.switcher")
			.hover( function(){ $(this).addClass('hover'); }, function(){$(this).removeClass('hover');} )
			.each(function(i){					
					var t = $(this);
					if( ! t.is('.selected') ){
						t.next('dd').hide();
					}
					
					t.click(function(){
					if( t.is('.selected')){
						t.next('dd').hide();
						t.removeClass('selected');
						//alert( this.className );
					}else{
						t.next('dd').show();
						t.addClass('selected');
						//alert( this.className );
					}				
				});
			});
		
		
});

