function switchToTab(product){
	var active_tab=getCookie('root_product_tab');
	if(active_tab!=='isl-light'&&active_tab!=='isl-alwayson'&&active_tab!=='isl-pronto'&&active_tab!=='isl-groop'){
		active_tab='isl-light';
	}
	if(typeof(product)==='undefined'){
		product=active_tab;
		active_tab='isl-light';
	}
	document.getElementById(active_tab+'-content').style.display='none';
	document.getElementById('menu_product_'+active_tab).className='';
	setCookie('root_product_tab',product);
	document.getElementById(product+'-content').style.display='';
	document.getElementById('menu_product_'+product).className='active';
	var links=document.getElementsByTagName('link');
	links[links.length-1].href='/'+product+'/style.css';
}

pudl_AddEventListener(window,'resize',function(){
	narrowDocument();
});

pudl_AddEventListener(window,'load',function(){
	narrowDocument();
	document.getElementById('isl-loading').style.display='';
	var css=document.createElement('link');
	css.rel='stylesheet';
	css.type='text/css';
	document.getElementsByTagName('head')[0].appendChild(css);
	setTimeout(function(){
		$('#isl-loading').hide();
		switchToTab();
		document.getElementById('menu_product_isl-light').onclick=function(){switchToTab('isl-light');return false};
		document.getElementById('menu_product_isl-alwayson').onclick=function(){switchToTab('isl-alwayson');return false};
		document.getElementById('menu_product_isl-pronto').onclick=function(){switchToTab('isl-pronto');return false};
		document.getElementById('menu_product_isl-groop').onclick=function(){switchToTab('isl-groop');return false};
		with(document.getElementsByTagName('div')){
			for(var i=length-1;i>=0;--i){
				if(item(i).className==='green_field_2'){
					with(item(i).getElementsByTagName('div')){
						for(var j=length-1;j>=0;--j){
							if(j===0&&item(j).getElementsByTagName('a').length>0){
								item(j).onclick=function(){switchToTab('isl-light');return false}
							}
							if(j===1&&item(j).getElementsByTagName('a').length>0){
								item(j).onclick=function(){switchToTab('isl-alwayson');return false}
							}
							if(j===2&&item(j).getElementsByTagName('a').length>0){
								item(j).onclick=function(){switchToTab('isl-pronto');return false}
							}
							if(j===3&&item(j).getElementsByTagName('a').length>0){
								item(j).onclick=function(){switchToTab('isl-groop');return false}
							}
						}
					}
				}
			}
		}
		document.getElementById('isl-online-news-subfragment').style.display='';
		document.getElementById('isl-online-uniform-subfragment').style.display='';
		document.getElementById('isl-online-products-subfragment').style.display='';
		document.getElementById('unified_form_join').firstChild.code.focus();
	},500);
});