function cat_updater()
{


      $.ajax({
                    method: 'get',
                    url : "/sessiontimeout/check",
                    dataType : 'json',
	            global: false,
                    success: function (data) { 
			}
                 });

}

var holdTheInterval = setInterval(cat_updater, 900000);  

