		$(function () {
			var tabContainers = $('div.tabs > div');
			tabContainers.hide().filter(':first').show();
			
			$('.inttab').click(function () {
				var tabContainers = $('div.tabs > div');
				tabContainers.hide();				
				tabName='#'+$(this).attr('summary');
				tabContainers.hide().filter(tabName).show();
				$('div.tabs table.inttab').removeClass('selectedtab');
				$(this).addClass('selectedtab');
				return false;
			}).filter(':first').click();
		});
