$(document).ready(function(){
	$("#imagegallery li ul").hide();
	
	$("#imagegallery li a").click(function(){
		$(this).parent().children("ul").slideToggle();
	});
});
