var tabID;
var tabXpos = -5;
var tabZpos = 10;

var b_check = function(){
	var browser = get_browser().split('_');
	var check = ((browser[0] == 'IE' && browser[1].toInt() > 9) || browser[0] != 'IE')? 'ok' : 'low';
	
	return check;
};

var stylesInit = function(){
	
	if(b_check() == 'low'){
		var IE_s = document.createElement('link'); 
			IE_s.href = './assets/css/nederlandlacrosse_ielow.css';
			IE_s.type = 'text/css'; 
			IE_s.rel  = 'stylesheet';
    	
	    var	__l = document.getElementsByTagName('link');
		var __s = document.getElementsByTagName('link')[__l.length - 1]; 
			__s.parentNode.insertBefore(IE_s, __s);
	}
};

var tabInit = function(){
	
	if(b_check() == 'ok' || b_check() == 'low'){
		
		$$('.tab').each(function(tabObj){
			tabObjId = tabObj.get('id');
			tabID += ","+tabObjId;	
		});
	
	
		tabID = tabID.replace('undefined,','');
		tabID = tabID.split(',');
	
		$(tabID[0]).setStyle('zIndex',tabZpos);
		$(tabID[0]).setStyle('left',tabXpos);
	
		var i=1;
		for(i=1;i< tabID.length;i++){
		
			prevWidth = $(tabID[i-1]).getStyle('width').toInt();
			prevWidth = prevWidth-11;
			thisID = tabID[i];
		
			tabXpos += prevWidth;
			tabZpos -= 1;
		
			if(thisID != "contact"){
				$(thisID).setStyle('left',tabXpos);
			}
			if(!$(thisID).hasClass('white')){
				$(thisID).setStyle('zIndex',tabZpos);
			}else{
				$(thisID).setStyle('zIndex',10);
			}
		}
	}
	$$('.tab').each(function(tabItem){
		tabItem.addEvent('mouseenter',function(){
			if(!tabItem.hasClass('white')){
				tabItem.addClass('hov');
			}
		}).addEvent('mouseleave',function(){
			if(!tabItem.hasClass('white')){
				tabItem.removeClass('hov');
			}
		}).addEvent('click',function(){
			if(!tabItem.hasClass('white')){
				window.parent.location.href="?p="+tabItem.get('id');
			}
		});
	});
};

var rightButtons = function(){
	$$('.right_buttons').each(function(button){
		button.addEvent('click',function(){
			b_Id = button.get('id');
			b_Id = b_Id.split('-');
			page = b_Id[0];
			item = b_Id[1];
			window.parent.location.href="?p="+page+"&i="+item;
		});
	});
	
};

var homeInit = function(){
	if($('logo')){
		$('logo').addEvent('click',function(){
			window.parent.location.href="?p=home";
		});
	}
};

var fadeInOut = function(oBj,d,to){
	$(oBj).set('morph',{duration:d});
	$(oBj).morph({'opacity':[$(oBj).getStyle('opacity'),to]});
};

var by_wearewie = function(){
	if($('by_wearewie')){
		$('by_wearewie').setStyle('opacity',.3);
		$('by_wearewie').addEvent('mouseenter',function(){
		
		fadeInOut('by_wearewie',500,1);
		
	}).addEvent('mouseleave',function(){
	
		fadeInOut('by_wearewie',500,.3);
		
	}).addEvent('click',function(){
		window.open('http://www.wearewie.com','');
	});
	
}

};

window.addEvent('domready', function() {
	stylesInit();
	tabInit();	
	homeInit();
	rightButtons();
	by_wearewie();
});
