<?php include('header.php'); ?>
<div id="content">
	<?php include('navbar.php'); ?>
	<?php
		$topic = $_GET['topic'];
		$level = $_GET['level'];
	?>
	<?php
		switch($topic){
			case 'alltopic':
				include('topic/alltopic.php');
				break;
			case 'food':
				include('topic/food.php');
				break;
			case 'travel':
				include('topic/travel.php');
				break;
			case 'shopping':
				include('topic/shopping.php');
				break;
			case 'habits':
				include('topic/habits.php');
				break;
			case 'hobbies':
				include('topic/hobbies.php');
				break;
			case 'sports':
				include('topic/sports.php');
				break;
			case 'animals':
				include('topic/animals.php');
				break;
			case 'work':
				include('topic/work.php');
				break;
			case 'environment':
				include('topic/environment.php');
				break;
			case 'weather':
				include('topic/weather.php');
				break;
			case 'music':
				include('topic/music.php');
				break;
			case 'movies':
				include('topic/movies.php');
				break;
			case 'family':
				include('topic/family.php');
				break;
			case 'friends':
				include('topic/friends.php');
				break;
			case 'technology':
				include('topic/technology.php');
				break;
			case 'money':
				include('topic/money.php');
				break;
			case 'health':
				include('topic/health.php');
				break;
			case 'cultures':
				include('topic/cultures.php');
				break;
			case 'holidays':
				include('topic/holidays.php');
				break;
			case 'house':
				include('topic/house.php');
				break;
			case 'school':
				include('topic/school.php');
				break;
			case 'various':
				include('topic/various.php');
				break;
		}
	?>
</div>
<?php include('sidebar.php'); ?>
<?php include('footer.php'); ?>