jQuery(document).ready(function($) {
	$('.b_ReactionDisplay form.post_comment').hide();
	$('.b_ReactionDisplay .breact').click(function() {
		$('.b_ReactionDisplay form.post_comment').slideDown();
		$('.b_ReactionDisplay .breact').hide();
	});

	$('.b_ReactionDisplay input.s').mouseover(function() { $(this).addClass('s_hover'); })
		.mouseout(function() { $(this).removeClass('s_hover').removeClass('s_down'); })
		.mousedown(function() { $(this).addClass('s_down'); })
		.mouseup(function() { $(this).removeClass('s_down'); });

	$('.b_ReactionDisplay form.post_comment').submit(function() {

		var $t 		= $(this);
		var value 	= $t.find('textarea').val();
		if (value.length < 6) {
			alert('Please write a comment before pressing the "Post comment" button');
			return false;
		}

		return true;
	});
});
