/* --------------------------------------------------
	LOAD FUNCTION
-------------------------------------------------- */
(function($){
$(function(){
	ist.tabInterface();
});
})($jq['base']);

/* --------------------------------------------------
	CHANGE FONT SIZE
-------------------------------------------------- */
ist.tabInterface = function(){(function($){
	var openPanel = 0;
	$('.tabPanel:not(:eq('+ openPanel +')),.panelTitle').css('display', 'none');

	var titleList= $('.tabTitle li').get();
	var panelList= $('.tabPanel').get();
	titleList[openPanel].className = 'tabStay';

	$('.tabTitle li').each(function(i){
		$(this).find('a').click(function(e){
			for(var j=0; j<panelList.length; j++){
				if(i == j){
					titleList[j].className = 'tabStay';
					panelList[j].style.display = 'block';
				} else {
					titleList[j].className = '';
					panelList[j].style.display = 'none';
				}
			}
			e.preventDefault();
		});
	});
})($jq['base'])};