$(document).ready ( function () {
	
	//alert('ll');
	
	$("small.extender").click( function () {
		var str1=$(this).attr("myattr");
		var str2=$(this).text();
		$(this).siblings("textarea").toggleClass("high");
		$(this).text(str1);
		$(this).attr("myattr",str2);
		return false;
	}); 
	
	$("a#dater").click( function () {
		var tday=$(this).attr("myattr");
		$(this).parent().siblings("input[@type=text]").attr("value", tday);
		//alert(tday);
		return false;
	});
	
	
	$("a.voter").click ( function () {
		var votefor=$(this).attr("title");
		$("input#votefor").attr("value",votefor);
		$("form#promovote").submit();
		return false;
	});

	
});
