﻿//Redirects to a previously cached state unless there is a referring page
; (function(d, ls) { 
	var k = "bondi-squirrelsubcache-app-urlState";
	if (!d.referrer && !location.hash && ls && ls.hasOwnProperty(k)){ 
		location.href = eval(ls.getItem(k));
	}
})(document, localStorage);
