$(document).ready(function() {
	var $tabs = $('.tabs_class').tabs();
	$(".tabs_class").tabs({
		ajaxOptions: {
			error: function(xhr, status, index, anchor) {
				$(anchor.hash).html("Couldn't load this tab. We'll try to fix this as soon as possible.");
			}
		},
		cookie: {
				// store cookie for a day, without, it would be a session cookie
				expires: 1
			}
	});	
});

