(function(){
	
	FeedbackPages = {
	
		chageEmailNotifications: function()
		{
			var data =  {
							email: $(".email_update").val()
						};
			jQuery.post("/settings/change_email_notifications", data, function(obj){
				eval('dialogBox.displayError(obj["message"], 30, 15)');
				if ( obj["success"] )
					$(".notification_email_div").fadeOut();
			}, "json");
		}
	}
})();
