(function($) {

$(document).ready(function() {
	var img_path = '/wp/wp-content/themes/rivas/img/';

	$('#what_human').attr('checked', 'checked');
	$('#contact-form .field-what').hide();

    $('#contact-form').submit(function() {
        var form = $(this);
        var post_data = form.serialize();
        $.post(form.attr('action') + '?ajax=1', post_data, function(data) {
            form.html(data);
            $('.error-msg, .error', form).hide().fadeIn();
			$('#contact-form .field-what').hide();
        });
        return false;
    });
	
	$('#commentform').ajaxError(function() {
		if (!$('.error-msg', this).get(0)) {
			$('.comment-notes', this).after('<p class="error-msg copy">Please fill in all the required fields below.</p>');
		}
		$('.error-msg', this).hide().fadeIn();
	});
	
	$('#commentform').submit(function() {
		$.post($(this).attr('action'), $(this).serialize(), function(data) {
			$('#comment').val('');
			window.location.reload();
		});
		return false;
	});

	hs.graphicsDir = template_url + '/js/highslide/graphics/';
});

})(jQuery);
