function initMenu() {
	$('.work li ul').hide();
	$('.work li ul:first').show();
	$('.work li').click(
			function() {  
				var checkElement = $(this).children('ul:first');   
				if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
					return false; 
				}   
				if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
					$('.work li ul:visible').slideUp('normal');
					checkElement.slideDown('normal');
					return false; 
				}    
			}   
		);   
}            

$(document).ready(function() {initMenu();});
		
