$(function(){
    var vbar = {
        'sake-vbar': {
            left: '115px'
        },
        'shochu-vbar': {
            left: '759px'
        }
    };
    function initialize() {
        $('.linker').hover(function(){
            $('#'+$(this).attr('rel')).animate({'backgroundColor':'#ee2527', opacity:1, left:'-=45px',width:'240px'},500)
        }, function(){
            var tid = $(this).attr('rel');
            $('#'+tid).stop().animate({'backgroundColor':'#666666', opacity:0.5, left:vbar[tid].left,width:'150px'},100)
        });
        ticker();
        setInterval(ticker, 25000);
    }
    function ticker(){
        $('#ticker').css({left:'1600px'}).animate({left:'-3200px'}, 20000, 'linear');
    }
    if (swfobject.hasFlashPlayerVersion('99.0.28')) {
        swfobject.embedSWF('swf/top.swf', 'altanative-content', '100%', '100%', '9.0.28', null, {}, {'wmode':'transparent'});
    }
    else {
        $('#altanative-content').fadeTo(2000, 1, initialize);
    }
    if ($.browser.msie && $.browser.version == 6) {
        $('#footer').exFixed();
    }
});

