//var $j = jQuery.noConflict();


//$j('ul.tabs li').css('cursor', 'pointer');

function set_tab(id,t){
	//var thisClass = this.className.slice(0,2);
	$('#t1_'+id).hide();
	$('#t2_'+id).hide();
	$('#t3_'+id).hide();
	$('#t4_'+id).hide();
	$('#t5_'+id).hide();
	$('#t'+t+'_'+id).show();
	$('#mt1_'+id).removeClass('tab-current');
	$('#mt2_'+id).removeClass('tab-current');
	$('#mt3_'+id).removeClass('tab-current');
	$('#mt4_'+id).removeClass('tab-current');
	$('#mt5_'+id).removeClass('tab-current');
	$('#mt'+t+'_'+id).addClass('tab-current');
	
	if (t==4) $('#t'+t+'_'+id).height('200px'); else $('#t'+t+'_'+id).height('100px')
	}

