// JavaScript Document

this.hideinfo = function()
{
	$(".rightScrollContentHolderTeam").each(function(i){
		if (i == 0){
		}else{
		this.style.display = 'none';
		};
	});
};

this.scrollpane = function()
{
	$('.rightScrollContentTeam').jScrollPane({
			scrollbarWidth:5,
			scrollbarMargin:19								 
			});
};	  


$(document).ready(function(){	
	if(navigator.userAgent.match(/iPhone/i)){
		}else{
		scrollpane();
		};
	hideinfo();
});

function tabSwitch_2(active, number, tab_prefix, content_prefix) {  

for (var i=1; i < number+1; i++) {  
  document.getElementById(content_prefix+i).style.display = 'none';  
  document.getElementById(tab_prefix+i).className = '';  
}  
document.getElementById(content_prefix+active).style.display = 'block';  
document.getElementById(tab_prefix+active).className = 'active';      
};
