/**********************************************
 * jQuery functions
 **********************************************/

/**
 * Validate comment input,
 * if nothing is entered return an error message
 */
function commentform_validate()
{
	if ($('#comment').val() == '') {
		alert('Schrijf je bericht en druk dan op versturen...');
		return false;
	}

	return true;
}
