$(function(){
    $('#marquee').marquee().hover(function(){
        $(this).trigger('stop');
    },function(){
        $(this).trigger('start');
    });
    
    //vertical menu hilight
    $('#vertical-menu li:not(.m_active)').hover(function() {
        $(this).children('.inactive_top').removeClass().addClass('active_top');
        $(this).children('.inactive_sub').removeClass().addClass('active_sub');
        $(this).children('.inactive_bottom').removeClass().addClass('active_bottom');
    },function(){
        $(this).children('.active_top').removeClass().addClass('inactive_top');
        $(this).children('.active_sub').removeClass().addClass('inactive_sub');
        $(this).children('.active_bottom').removeClass().addClass('inactive_bottom');
    });

    //ahover
    $('#menu li.button').mouseover(function(){
        var pos = $(this).position();
        $('#amiddle').stop().animate({ width: $(this).width() }, { duration: 800 });
        $('#ahover').stop().animate({ left: pos.left + 65, top: pos.top + 282 }, { duration: 500 });
        $('#ahover').show();
    });
    $('#menu').mouseout(function(){
        $('#ahover').hide();
    });
    var tmp = $('#menu li.button:first').position();
    $('#ahover').css({left: tmp.left + 65, top: tmp.top + 282 });
});

