var timeout         = 500;
var closetimer		= 0;
var ddmenuitem      = 0;

// open hidden layer
function mopen(id)
{	
	// cancel close timer
	mcancelclosetime();

	// close old layer
	if(ddmenuitem) ddmenuitem.style.visibility = 'hidden';

	// get new layer and show it
	ddmenuitem = document.getElementById(id);
	ddmenuitem.style.visibility = 'visible';

}
// close showed layer
function mclose()
{
	if(ddmenuitem) ddmenuitem.style.visibility = 'hidden';
}

// go close timer
function mclosetime()
{
	closetimer = window.setTimeout(mclose, timeout);
}

// cancel close timer
function mcancelclosetime()
{
	if(closetimer)
	{
		window.clearTimeout(closetimer);
		closetimer = null;
	}
}

// close layer when click-out
document.onclick = mclose; 

document.writeln('<table class="Top"');
document.writeln('	<tr>');
document.writeln('		<td class="TopBar">');
document.writeln('<ul id="sddm">');
document.writeln('	<li><a href="../sunday/worship.php" onmouseover="mopen(\'m1\')" onmouseout="mclosetime()">主日活動</a>');
document.writeln('		<div id="m1" onmouseover="mcancelclosetime()" onmouseout="mclosetime()">');
document.writeln('		<a href="../sunday/worship.php">崇拜時間</a>');
document.writeln('		<a href="../sunday/prayermeetings.php">祈禱會</a>');
document.writeln('		<a href="../sunday/sundayschool.php">主日學</a>');
document.writeln('		<a href="../sunday/parkingfacilities.php">停車設施</a>');
document.writeln('		<a href="../sunday/childcare.php">兒護服務</a>');
document.writeln('		<a href="../sunday/churchtour.php">參觀教會</a>');
document.writeln('		</div>');
document.writeln('	</li>');


document.writeln('	<li><a href="../sermon/sermon.php?y=2010" onmouseover="mopen(\'m2\')" onmouseout="mclosetime()">主日講道</a>');
document.writeln('		<div id="m2" onmouseover="mcancelclosetime()" onmouseout="mclosetime()">');
document.writeln('		<a href="../sermon/sermon.php?y=2010">2010</a>');
document.writeln('		<a href="../sermon/sermon.php?y=2009">2009</a>');
document.writeln('		<a href="../sermon/sermon.php?y=2008">2008</a>');
document.writeln('		<a href="../sermon/sermon.php?y=2007">2007</a>');
document.writeln('		</div>');
document.writeln('	</li>');


document.writeln('	<li><a href="../aboutus/churchhistory.php" onmouseover="mopen(\'m3\')" onmouseout="mclosetime()">認識我們</a>');
document.writeln('		<div id="m3" onmouseover="mcancelclosetime()" onmouseout="mclosetime()">');
document.writeln('		<a href="../aboutus/churchhistory.php">麥浸歷史</a>');
document.writeln('		<a href="../aboutus/churchstaff.php">教牧同工</a>');
document.writeln('		<a href="../aboutus/missionandvision.php">異像與使命</a>');
document.writeln('		<a href="../aboutus/statementoffaith.php">信仰宣言</a>');
document.writeln('		<a href="../aboutus/accessibility.php">傷健設施</a>');
document.writeln('		<a href="MailTo:info@mcbc.com">聯絡我們</a>');
document.writeln('		<a href="../aboutus/map.php">教會地圖</a>');
document.writeln('		<a href="../aboutus/rentalpolicies.php">場地租用</a>');
document.writeln('		</div>');
document.writeln('	</li>');
document.writeln('	<li><a href="../fellowship/fellowships.php" onmouseover="mopen(\'m4\')" onmouseout="mclosetime()">教會天地</a>');
document.writeln('		<div id="m4" onmouseover="mcancelclosetime()" onmouseout="mclosetime()">');
document.writeln('		<a href="../fellowship/fellowships.php">小組與團契</a>');
document.writeln('		<a href="../fellowship/flm.php">家庭生命事工</a>');

document.writeln('		<a href="MailTo:prayer@mcbc.com">代禱要求</a>');
document.writeln('		<a href="../../scout/home/index.php" target="popupwindow">童軍</a>');
document.writeln('		<a href="http://www.rbcintl.org/odb/b5-odbtxt.php?lang=b5" target="popupwindow">靈命日糧</a>');
document.writeln('		</div>');
document.writeln('	</li>');
document.writeln('	<li><a href="../getinvolved/getinvolved.php" onmouseover="mopen(\'m5\')" onmouseout="mclosetime()">齊來參與</a>');
document.writeln('		<div id="m5" onmouseover="mcancelclosetime()" onmouseout="mclosetime()">');
document.writeln('		<a href="../getinvolved/getinvolved.php">每週活動</a>');
document.writeln('		<a href="../getinvolved/esl.php">英文班</a>');
document.writeln('		<a href="../getinvolved/esl.php">拼音班</a>');
document.writeln('		<a href="../getinvolved/esl.php">入籍班</a>');
document.writeln('		</div>');
document.writeln('	</li>');
document.writeln('	<li><a href="../events/events.php" onmouseover="mopen(\'m6\')" onmouseout="mclosetime()">教會消息</a>');
document.writeln('		<div id="m6" onmouseover="mcancelclosetime()" onmouseout="mclosetime()">');
document.writeln('		<a href="../events/events.php">最新消息</a>');
document.writeln('		<a href="../events/newsletters.php">麥浸加油站</a>');
document.writeln('		<a href="../events/churchcalendar.php">教會行事曆</a>');
document.writeln('		</div>');
document.writeln('	</li>');

document.writeln('</ul>');document.writeln('				</tr>');
document.writeln('		</td>');
document.writeln('	</tr>');
document.writeln('</table>');
