$(document).ready(function()
{
	$('span.yesno').hide();
	
	$('a.button').click(function()
	{
		$(this).next("span.yesno").toggle();
		return false;
	});
});