/**
 * トップ画面flash表示クラス
 */
Ozein.TopFlash = new Class.create();
Ozein.TopFlash.prototype = {
    other: new Array(),
    options:{},
    /** 初期化 */
    initialize: function(node,options){
        this.topFlash();
        this.newsFlash();
    },
    topFlash:function(){
        var swf = new Ozein.SWFObject($('top_flash_area'),
            {swf: '/swf/top.swf'
            ,id: 'top_flash_area'
            ,width: '978'
            ,height: '251'
            ,version: '8.0.24'
            ,backgroundColor: '#ffffff'
            ,useTransparent: false
            ,mode: false
            ,params:{
                 play: true
                ,loop: true
                ,menu: false
                ,quality: 'high'
                ,align: "middle"
                ,scale: "showall"
                ,salign: ""
                ,wmode: "opaque"
                ,bgcolor: '#ffffff'
                ,swliveconnect: false
                ,flashvars: false
                ,devicefont: false
                ,allowscriptaccess: "sameDomain"
                ,seamlesstabbing: false
                ,allowfullscreen: false
                ,allownetworking: false
            }
        });
    },
    newsFlash:function(){
        var swf = new Ozein.SWFObject($('news_flash_area'),
            {swf: '/swf/news.swf'
            ,id: 'news_flash_area'
            ,width: '935'
            ,height: '23'
            ,version: '8.0.24'
            ,backgroundColor: '#ffffff'
            ,useTransparent: false
            ,mode: false
            ,params:{
                 play: true
                ,loop: true
                ,menu: false
                ,quality: 'high'
                ,align: "middle"
                ,scale: "showall"
                ,salign: ""
                ,wmode: "opaque"
                ,bgcolor: '#ffffff'
                ,swliveconnect: false
                ,flashvars: false
                ,devicefont: false
                ,allowscriptaccess: "sameDomain"
                ,seamlesstabbing: false
                ,allowfullscreen: false
                ,allownetworking: false
            }
        });
    }
}

/**
 * ギャラリー画面flash表示クラス
 */
Ozein.GalleryFlash = new Class.create();
Ozein.GalleryFlash.prototype = {
    other: new Array(),
    options:{},
    /** 初期化 */
    initialize: function(node,options){
        this.galleryFlash();
    },
    galleryFlash:function(){
        var swfObj = new Ozein.SWFObject($('gallery_flash_area'),
            {swf: '/swf/gallery.swf'
            ,id: 'gallery_flash_area'
            ,width: '934'
            ,height: '544'
            ,version: '8.0.24'
            ,backgroundColor: '#ffffff'
            ,useTransparent: false
            ,mode:false
            ,params:{
                 play: true
                ,loop: true
                ,menu: false
                ,quality: 'high'
                ,align: "middle"
                ,scale: "showall"
                ,salign: ""
                ,wmode: "opaque"
                ,bgcolor: '#ffffff'
                ,swliveconnect: false
                ,flashvars: false
                ,devicefont: false
                ,allowscriptaccess: "sameDomain"
                ,seamlesstabbing: false
                ,allowfullscreen: false
                ,allownetworking: false
            }
        });
    }
}