function initOpenTitle() {
	$('#openTitle ul').hide(); 
	$('#openTitle li a').click(
		function() {
			var checkElement = $(this).next();
			if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
				checkElement.slideToggle('normal');	
				$(this).css("color","gray"); 
				return false;
			}
			if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
				$('#openTitle ul:visible').slideUp('normal');	
				$('#openTitle a').css("color","gray");
				checkElement.slideDown('normal');
				
				$(this).css("color","#fff"); 
				
				return false;
			}
		}
    );
}
$(document).ready(function() {initOpenTitle();});
