// JavaScript Document
function gardinOppna(id)
{
	MM_showHideLayers(id,'','show')
}
function gardinStang(id)
{
	MM_showHideLayers(id,'','hide')
}
				// EXEMPEL MED BG
				function gardinOver(id)
				{
					MM_changeProp(id,'','style.cssText','COLOR: #ffffff;','DIV');
					MM_changeProp(id,'','style.backgroundColor','#003399','DIV');
				}
				function gardinOut(id)
				{
					MM_changeProp(id,'','style.backgroundColor','#ffffff','DIV');
					MM_changeProp(id,'','style.cssText','COLOR: #000000;','DIV');
				}