/* Doc_Obj v1.1 <http://flashopen.net/tutorials/swfobject/>
	Copyright (c) 2009 Carlos Guerra Amaral
	This software is released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
*/
/*
 Tested in PCWin with 
				FireFox 3.0.11 
				Netscape 8.1 
				Flock 1.2.6 
				Safari 3.2.1 
				IExplorer 8.0.6001
*/
//
	var h;
	var url = "home";
	//
	function set_url(n){
		// FF / Netscape / Flock / Safari
		window.location.hash = "#"+n;
		url = window.location.hash;
		h = url;
	}
	//
	function get_url(){
		if(h != url){
			url = h;
			index = window.location.hash.substr(1);
			document["index"].goHome(index);
		}
		h = window.location.hash;
	}
	setInterval("get_url()",24);
	//
