<?php
require_once(dirname( __FILE__ ).'/baseMpro.php');

/**
 * トップページ
 *
 * @author mediapro
 *
 */
class index extends baseMpro {

	public function action($smarty) {
		$smarty->assign('isVisibleTopMain', true);
		$smarty->assign('detailHtml', get_class($this) . '.tpl');
		$smarty->display('common.tpl');
	}
}

new index();

?>
