$(document).ready(function(){
		// Beim starten wird history-Plugin initialisiert und ajaxGet mit "" aufgerufen
		// Bei jedem historyLoad oder Zurück im Browser wird ajaxGet aufgerufen.
		$.historyInit(ajaxGet, "content.php");

        $("a[rel='historyLinks']").click(function(){
			//
			var hash = this.href;
			hash = hash.replace(/^.*#/, '');
			// moves to a new page.
			// ajaxGet is called at once.
			// hash don't contain "#", "?"
			$.historyLoad(hash);
			return false;
		});

  });
  function ajaxGet(dataid) {
        /*if($.browser.msie) {
		    // jquery's $.load() function does't work when hash include special characters like aao.
		    dataid = encodeURIComponent(dataid);
		} */
        $("#main").load("content.php?content="+dataid+"");
        
        if(dataid=="gaestebuch"){
            ajaxFunction('myspan','Gaestebuch/include/guestbook.php');
            preloadimg();
        }
  }