var drama;
if (!drama) drama = {};

drama.indexInit = function() {
	// Tabs
	$('#tabs')
		.tabs()
		.find('ul')
			.each(function() {
				$(this)
					.find('li:last')
						.addClass('last');
			});
}

$(function() {
	// 全站Banner
	$('.banners').cycle({ 
		fx:    'fade', 
		speed:  800,
		timeout: 5000,
		pause:  1 
	});	
	$('.indexadds').cycle({ 
		fx:    'fade', 
		speed:  800,
		timeout: 5000,
		pause:  1 
	});	 
	$('.adds').cycle({ 
		fx:    'scrollDown', 
		speed:  800,
		timeout: 5000,
		pause:  1 
	});	  
   
    // 回上一頁按鈕
    $('#btnBack').click(function() {
        window.history.back();
        return false;
    });
	
	// 將導覽列加上class功能
	var $url = $.url.attr('file'),
		$urlTitle;
		
    if ($url) {
        $urlTitle = $url.split('.')[0].split('_')[0];
		
        $('ul.nav a').each(function() {
            var $capital = ($(this).attr('href').split('.')[0]).split('_')[0];
            if ($urlTitle == $capital) {
                $(this).parent().addClass('on');
            }
        });
    }
});