$(document).ready(function(){
				
	$(".itemDetail:not(:first)").hide();
	$("#expandTopTen ul.item:not(:first)").removeClass("open");
	$("#expandTopTen ul.item:not(:first)").addClass("closed");
	
	
	$("#expandTopTen ul.item li ").click(function(){
	        $(this).parent().next().slideToggle(200);
	        $(this).parent().toggleClass('closed');
			$(this).parent().toggleClass('open');
		return false;
	});
	
	
	$("#expandTopTen ul.item li a").each(function() {
	    var count = $(this).text().length;
	    if ( count >= 48 ) {
	        $(this).parent().addClass("too-big-overflow");
	    }
	});
});




