$(function() {

	$('.fexample').example(function() {
		return $(this).attr('title');
	});
	
	$('#modal_error').dialog({
		autoOpen: false,
		modal: true,
		buttons: { OK: function() { $(this).dialog('close'); } }
	});
	
	$('#newsletterSignup').submit(function() {
		$('#signupAjax').val('ajax');
		$('#newsletterSignup').ajaxSubmit({
			success: function(d, s) {
				if (d == 'Success') {
					location.href = '/newsletter/confirm';
				} else {
					$('#modal_error_content').html('We were unable to add you to our mailing list. Please check your input and try again.');
					$('#modal_error').dialog('open');
				}
			}
		});
		return false;
	});
	
});