var SiteClass = new Class({

	b_href: null, // http z domeną (np. http://www.heban.net/)
	l_href: null, // adres strony (bez http i domeny, np. dla-ciebie/aktualnosci)
	h_href: null, // kotwica, czyli to co jest po #
	
	initialize: function(b_href){
		
		var href = document.location.href.split("#");
		this.b_href = b_href;
		this.l_href = href[0].substr(this.b_href.length);
		this.h_href = href[1];
		if(!this.h_href && this.l_href) document.location.href = this.b_href + '#/' + this.l_href;
	
	}, // initialize

	domReady: function() {

		var params = {
			quality: "high",
			scale: "noscale",
			wmode: "window",
			allowscriptaccess: "always",
			bgcolor: "#000000"
		};
		var flashvars = {};
		var attributes = {id: "flash"};
		swfobject.embedSWF("main.swf?key="+window.googlekey, "flash", "100%", "100%", "9.0.0", "expressInstall.swf", flashvars, params, attributes);		
		
		$('body').setStyle('display', 'none');
		/*
		var version = deconcept.SWFObjectUtil.getPlayerVersion();
		if (document.getElementById && version["major"] < 9) {
			
		} else {
			var so = new SWFObject("/public/flash/main.swf", "main_flash", "100%", "100%", "9", "#000000");
			so.addParam("scale", "noscale");
			so.addParam("wmode", "window");
			so.addParam("quality", "high");
			so.addParam("allowscriptaccess", "always");
			so.write("flash");
		}
		*/
	} // domReady

});
