/**
*【Drama Network Inc. 多瑪數位廣告】
* web http://www.drama.com.tw
* email service@drama.com.tw
* tel 02 2771 0701
* fax 02 2771 1767
*/ 

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

/**
* contact us page initial
*/
drama.contactInit = function() {
    // first focus
    $('#form2 input:first').focus();
    
    // reset button
    $('#btnReset')
        .css('cursor', 'pointer')
        .click(function() {
            $('#form2 input, #form2 textarea').val('');
            $('#form2 input:first').focus();
        });
}

/**
* navigator initial
*/
drama.nav = function() {
    // hide all sub menu when mouseover
    $('#nav li > a').mouseover(function() {
        $('.subNav').hide()
    });
    
    // show about sub menu
    $('#nav a.about').mouseover(function() {
        $('.subNav')
            .hide()
            .eq(0).fadeIn('fast');
    });
    
    // show product sub menu
    $('#nav a.product').mouseover(function() {
        $('.subNav')
            .hide()
            .eq(1).fadeIn('fast');
    });    
    
    // show process sub menu
    $('#nav a.process').mouseover(function() {
        $('.subNav')
            .hide()
            .eq(2).fadeIn('fast');
    });
    
    // keep sub menu when mouseover and hide when mouse out
    $('.subNav').each(function() {
        $(this).hover(function() {
            $(this).show();
        }, function() {
            $(this).hide();
        });
    });
}