$(document).ready(function(){

	$("input[name='comment[name]'], input[name='comment[email]'], input[name='comment[captcha], textarea[name='comment[text]']").example(function() {
	    return $(this).attr('title');
	});

	$("#select_avatar a").click(function(e){
		$("#select_avatar_hidden").toggle("fast");
		return false;
	});

	$("#select_avatar_hidden img").click(function(e){
		$("#avatar_hidden").val(this.id);
		$("#avatar_img").attr("src", this.src);
		$("#select_avatar_hidden").hide("fast");
	});
});