$(document).ready(function(){
	$('#selection_new .trigger').click(function(){
		var child = $(this).closest('li').find('ul:first');
		var depth = $(this).closest('li').attr('class').match(/[0-3]$/);
		
		
		if($(child).css('display') == 'none') {
			$(child).fadeIn();
			$(this).html('-');
		}
		else{	
			$(this).closest('li').find('ul').each(function(){
				$(this).find('span.trigger:first').html('+');
				$(this).fadeOut()
			});
			$(this).parent().find('span.trigger:first').html('+');
		} 
	});
	
	$('#selection_antique .trigger').click(function(){
		var child = $(this).closest('li').find('ul:first');
		var depth = $(this).closest('li').attr('class').match(/[0-3]$/);
		
		
		if($(child).css('display') == 'none') {
			$(child).fadeIn();
			$(this).html('-');
		}
		else{	
			$(this).closest('li').find('ul').each(function(){
				$(this).find('span.trigger:first').html('+');
				$(this).fadeOut()
			});
			$(this).parent().find('span.trigger:first').html('+');
		} 
	});
});
