$(function(){
	
	// dialog for success story add
	$('.quick-add').dialog({
		autoOpen: false,
		maxHeight: 400,
		modal: true,
		resizable: false,
		title: 'Register your CAA Success',
		width: 530,
		open: function(){
			// do not want this styling
			$(this).parent().removeClass('ui-widget');
		}
	});
	
	// open the dialog
	$('a.register').click(function(){
		$('.quick-add').dialog('open');
		return false;
	});
	
	// ajax validation
	$('form.ajax-validate').ajaxValidate();
	
});
