
$(function () {

//	var Popup = new PopupBlock({
//		container: $("#user-enter"),
//		link: $("#user-info .logon a"),
//		fader: $("#fader"),
//		close: $("#user-enter .icon_close")
//	});

	$("#form_registration #append").click(function() {
		$("#dt_birthday").attr("value",$("#year-birthday").val() + "-" + $("#month-birthday").val() + "-" + $("#day-birthday").val());
	});


	$("span.add_comment").click(function() {
		$("div.add_comment_form.expanded").slideUp( 200, function() { $(this).removeClass("expanded"); } );
		var b = $(this).parent().next().next("div.add_comment_form");
		if (!b.hasClass("expanded")) {
			b.slideDown( 200, function() { b.addClass("expanded"); } );
		} else {
			b.slideUp( 200, function() { b.removeClass("expanded"); } );
		}
	});

});

