//http://alligatorsneeze.com/jquery-tabs-creating-continue-and-previous-buttons

$(function() {
	$('#tabContainer > ul').tabs();			
});
/*set all tabs to height of max tab
$(function() {		
	var $tabs = $('#tabContainer').tabs(), $panels = $('.ui-tabs-panel');
	var maxHeight = 
		$.map($panels, function(el) {
			return $(el).height();;
		})
		.sort(function(a, b) {
			return b - a;
		})[0];
	$("#main").height(maxHeight+100);
	//$("#container").height(maxHeight+250);
});*/