function showTab(tId, show){
	for(i = 1; i <= 15; i++){ 
		try{
			$('l' + tId + i).removeClass('selected'); 
		} catch(err) {
			
		}
	} 
	
	for(i = 1; i <= 15; i++){
		try{
			$('t' + tId + i).fade('hide');  
			$('t' + tId + i).setStyle('display', 'block');    
		} catch(err) {
			 
		}
	}
	var container = $('tabContentContainer');  
	var	abox = $('t' + tId + show);
	var size = abox.getSize();  
	var height = size.y;
	if(height < 150 ){ 
		height = 150;	
	}  
	container.tween('height', height); 
	abox.fade('in');    

	$('l' + tId + show).addClass('selected'); 
	  
	return false; 
	
} 
