var loading_img = "<img src='/admin/img/loading.gif' align='absbottom'/> ";

$(function()
{
	$('#topsubmenu div').hide();
	$('#topmenu a[@rel='+NowMod+']').addClass('active');
	$('#topmenu a').mouseover(function()
	{
		$('#topsubmenu div').hide();
		var rel = $(this).attr('rel');
		var topsubmenu = $('#topsubmenu #'+rel);
		var left = $(this).attr('alt');
		topsubmenu.parent().css({paddingLeft:left+'px'});
		topsubmenu.show();
		
	});
});

	
function ShowSubmitMsg()
{
	var options = {title: "系統處理中，請等候",modal:true};
	var dialog = new Boxy(boxy_content(loading_img+"資料送出中，請稍候..."), options);
}

function boxy_content(strContent)
{
	return "<div class='boxy_content'>" +  strContent + "</div>";
}

function boxy_closebtn()
{
	return "<div><a href='#' onclick='Boxy.get(this).hide(); return false'>關閉</a></div>";
}
//-------------------------------------------------------------------------
function setTableBgColor(tableSelector,class_prefix,hoverClass)
{
	var tr_index = 0;
	$(tableSelector+" tr:gt(0)").each(function()
	{
		$(this).children("td").each(function()
		{
			$(this).addClass(class_prefix+ tr_index % 2);
			
		});
		tr_index++;
	});
}

