function maketabs( ul_id, firstopen ){

	$( '#'+ul_id+'-content div[id^=tab]' ).hide();
	
	if( firstopen != false ){ // handle first opened tab
		$( '#'+ul_id+'-content #'+firstopen ).show();
		$( '#'+ul_id+' li a' ).each(function(){
			if( $(this).attr('href') == firstopen ){
				$(this).addClass('current');
			}
		});
	}

	$( '#'+ul_id+' li a' ).click( function(event){
		event.preventDefault();
		var tab2show = $(this).attr('href');
		
		if( $( '#'+$(this).parent().parent().attr('id')+'-content #' + tab2show).is(':hidden') ){
			$( '#'+$(this).parent().parent().attr('id')+' li a' ).removeClass('current');
			$( this ).addClass('current');
			
			$( '#'+$(this).parent().parent().attr('id')+'-content div[id^=tab]').hide(); // hide all divs
			$( '#'+$(this).parent().parent().attr('id')+'-content #' + tab2show).show(); // show current divs
		}
		
	});
	
}
