function showTab(kind) {
	$('.tab').hide();
	document.getElementById('whatsonlist').scrollTop = 0; 
	if (kind=='features') {
		$('#whatsoninfo').html('<h2>Main Features</h2>');
		$('.tab.mainfeature').show();
		if ($('.tab.mainfeature').length==0) {
			$('#whatsoninfo').html('<h2>Main Features</h2><p>There are no Main Features currently scheduled.</p>');
		}
 	} else if (kind=='kidsclub') {
		$('#whatsoninfo').html('<h2>Kids Club</h2>');
  		$('.tab.kidsclub').show();
		if ($('.tab.kidsclub').length==0) {
			$('#whatsoninfo').html('<h2>Kids Club</h2><p>There are no Kids Club events currently scheduled.</p>');
		}
 	} else if (kind=='events') {
		$('#whatsoninfo').html('<h2>Special Events &amp; Live Opera</h2>');
  		$('.tab.events').show();
		if ($('.tab.events').length==0) {
			$('#whatsoninfo').html('<h2>Special Events</h2><p>There are no special events currently scheduled.</p>');
		}
 	} else if (kind=='matinee') {
		$('#whatsoninfo').html('<h2>Sunday Matinée</h2>'); 
 		$('.tab.matinee').show();
		if ($('.tab.matinee').length==0) {
			$('#whatsoninfo').html('<h2>Sunday Matinée</h2><p>There are Sunday Matinée films currently scheduled.</p>');
		}
 	} else if (kind=='baby') {
		$('#whatsoninfo').html('<h2>Bringing Up Baby</h2>');
  		$('.tab.baby').show();
		if ($('.tab.baby').length==0) {
			$('#whatsoninfo').html('<h2>Bringing Up Baby</h2><p>There are no Bringing Up Baby events currently scheduled.</p>');
		}
 	} else if (kind=='classics') {
		$('#whatsoninfo').html('<h2>Film Classics</h2>');
  		$('.tab.classic').show();
		if ($('.tab.classic').length==0) {
			$('#whatsoninfo').html('<h2>Film Classics</h2><p>There are no classic films currently scheduled.</p>');
		}
 	} else {
		$('#whatsoninfo').html('<h2>Everything</h2>');
  		$('.tab').show();
		if ($('.tab').length==0) {
			$('#whatsoninfo').html('<h2>Everything</h2><p>There are no events currently scheduled.</p>');
		}  		
 	}

}

