	function saveHistory(i)	{		$(function() {$.ajaxHistory.update("#"+i);});	}	_intervalId = setInterval(observeHistory, 200);	var hash=location.hash;	function saveHash(a)	{		hash="#"+a;		location.hash=a;	}	function observeHistory()	{		if (location.hash!=hash) 		{			tmp=location.hash;			hash=tmp;			tmp=tmp.replace("#","");			$("#piccontainer > div").css("display","none");			$("#addpiccontainer > div").css("display","none");			$("#caption > div").css("display","none");			$("#i"+(tmp-1)).css("display","inline");			$("#i"+(tmp-1)).css("opacity",1);			$("#i"+(tmp-1)).css("right",260);			$("#i"+(tmp-1)).css("width","515px");			$("#addpiccontainer > div:eq("+(tmp-1)+")").show();			$("#caption > div:eq("+(tmp-1)+")").show();			active=tmp-1;		}	}	$(document).ready(function() {		if (location.hash!="") 		{			tmp=location.hash;			tmp=tmp.replace("#","");		}		else tmp=1;		$("#i"+(tmp-1)).css("display","inline");		$("#i"+(tmp-1)).css("width","515px");		$("#addpiccontainer > div:eq("+(tmp-1)+")").show();		$("#caption > div:eq("+(tmp-1)+")").show();		active=tmp-1;	});	QueryLoader.selectorPreload = "#container";	QueryLoader.init();
