$(document).ready(function(){
    if ($('#PhotographyComments').length > 0) {
        $('#PhotographyComments').submit(function(){
            if ($('#PhotographiesCommentAuthor').val().length > 0 && $('#PhotographiesCommentLongDesc').val().length > 0) {
                $.post(
                    '/ajax/photographiesComment/',
                    {
                        'data[PhotographiesComment][title]':      $('#PhotographiesCommentTitle').val(),
                        'data[PhotographiesComment][author]':       $('#PhotographiesCommentAuthor').val(),
                        'data[PhotographiesComment][website]':        $('#PhotographiesCommentUrl').val(),
                        'data[PhotographiesComment][longDesc]':    $('#PhotographiesCommentLongDesc').val(),
                        'data[PhotographiesComment][photography_id]': $('#PhotographiesCommentPhotographyId').val()
                    },
                    function(data){
                        $('#comment-header').after(data);
                    },
                    'html'
                )
            }
            return false;
        });
    }
});