

$(document).ready(function() {
	$(".testtest span").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default"); 
		});
	$(".testtest div").css("display","none");
	$(".testtest span").click(function(){
		$(this).next().slideToggle("slow");
		});
});



$(document).ready(function() {
	$(".testtest2 span").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default"); 
		});
	$(".testtest2 div").css("display","none");
	$(".testtest2 span").click(function(){
		$(this).next().slideToggle("slow");
		});
});
