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

function test(){
	
	//$("#recentcomments li ul").hide();
	
	$("#recentcomments li span").hover(function () {
		$("#recentcomments li span").parent().siblings().find('ul:visible').slideUp(100);
	
		
		nextUL = $(this).next();
		//alert(nextUL);
		
		if(nextUL.is(':visible')){
			nextUL.slideUp(100);
			
		} else {
			// Is something else open? Toggle that shizzle
			nextUL.slideDown(100);
		}
		
		return false;
			
	});
}
	