$(document).ready(
	function() {
		var arrLists = $('div[id="leftcontent"] > ul[title]');

		$.each(arrLists,
			function() {
				var bSel = false;
				var arrKids = $(this).children();

				$.each(arrKids,
					function() {
						if ($(this).children(':first').css('color') == 'rgb(225, 29, 29)'
							|| $(this).children(':first').css('color') == '#e11d1d') {
							bSel = true;
							return false;
						}
					}
				);

				if (!bSel) $(this).css('display','none');

				$(this).before(
					'<p class="link">'+
					$(this).attr('title')+'</p>'
				);

				$(this).prev().bind('click',
					function() {
						var prev = $(this).siblings('ul[title]:visible');

						if (prev[0]) {
							var clicked = $(this);

							prev.slideUp('fast',
								function() {
									if (!prev || prev[0] != clicked.next()[0])
										clicked.next().slideDown('fast');
								}
							);
						} else {
							$(this).next().slideDown('fast');
						}
					}
				);
			}
		);
	}
);
