$(document).ready(function() {
    // Assign some links to lightbox-plugin
    //$('a[class="gallery"]').lightBox();

	// Handle submit of post-form
    $('#formmessages').bind('click', function () {
        $(this).slideUp();
    });

	$('#commentsform').submit(function () {
        var errors = new Array();

        if ($('input[name=nickname]').val() == '')
            errors.push('Please enter your name, pal.');

        if ($('textarea[name=comment]').val() == '')
            errors.push('Please write some stuff into the comment box :)');

        if (errors.length) {
	        $('#formmessages').slideUp(function () {
	            $('#formmessages').empty();
	
	            for (var i = 0; i < errors.length; i++) {
	                $('#formmessages').append('<li>' + errors[i] + '</li>')
	            }
	    
	            $('#formmessages').slideDown();
	        });

        	return false;
		} else {
			return true;
		}
	});
});

