$(document).ready(function(){
	$('.featurelist li:has(ul) > a').click(function(){
		$(this).next().slideToggle(1000);
		return false;
	});
});
