$(document).ready(function(){
	$("input, textarea").focus(function(){
		if ($(this).attr("value") == $(this).attr("title"))
		$(this).attr("value", "")
	});
	$("input, textarea").blur(function(){
		if ($(this).attr("value") == "")
		$(this).attr("value", $(this).attr("title"))
	});
	$("#vote .button").click(function(){
		$(this).toggle();
		$("#vote .res").toggleClass("hide");
		$("#vote .q").toggleClass("hide");
		return false;
	});
})
