jQuery(function ($) {
	var Project365 = {
		cookie: 'P365_PREFS',
		init: function () {
			var s = this;
			$('#prefs a').click(function (e) {
				e.preventDefault();
				
				var id = this.id,
					now = new Date(),
					exp = now.getTime() + 2592000;

				$.cookies.set(s.cookie, id, {hoursToLive: 336});

				window.location = location.href;
			});
		}
	};
	
	Project365.init();
});