$(function() {
	$(".text").css({display: "none"});
	$('.top').click(function() {
		$(this).next(".text").slideToggle();
		return false;
	});
});
function clearText(thefield){
	if (thefield.defaultValue==thefield.value)
	thefield.value = ""
}