// =============================
// =                           =
// = www.brystkraeft.dk        =
// = Site JavaScript functions =
// =============================


var Site = {
	
	start: function()
	{
		Site.addSifrFlashElements();
	},
	
	addSifrFlashElements: function()
	{
		if(typeof sIFR == "function")
		{
			/* Navigation static elements */
			sIFR.replaceElement(named(
			{
				sSelector:		"body h1", 
				sFlashSrc:		"gfx/page_headline.swf", 
				sColor:			"#766f3c", 
				sLinkColor:		"#766f3c", 
				sHoverColor:	"#766f3c", 
				sWmode:			"transparent",
				sFlashVars:		"textalign=left"
			}));
		};
	},
	
	addEvent: function(obj, type, fn)
	{
		if(obj.attachEvent)
		{
			obj['e'+type+fn] = fn;
			obj[type+fn] = function(){obj['e'+type+fn]( window.event);}
			obj.attachEvent('on'+type, obj[type+fn]);
		}
		else
		{
			obj.addEventListener(type, fn, false);
		}
	}
}

if (window.addEvent) window.addEvent('load', Site.start);