/* -------------------------------- 
    Utility Class : base
 -------------------------------- */

var base = {
    preventDefault: function(e){
        if(e.preventDefault){
            e.preventDefault();
        }
        else if(window.event){
	  		window.event.returnValue = false;
        }
    },
    addevent: function(node,evt,func){
        if(node.addEventListener){
            node.addEventListener(evt,func,true);
        } else if(node.attachEvent){
            node.attachEvent("on"+evt,func);	
        }
    },
    bind: function(){
        var args=[];
        if(arguments){
            for(var i=0,n=arguments.length;i<n;i++){
                args.push(arguments[i]);
            }
        }
        var object=args.shift();
        var func=args.shift();
        return function(event) {
            return func.apply(object,[event||window.event].concat(args));
        }
    }
};

/* -------------------------------- 
    Main Class : visualChanger
 -------------------------------- */

var visualChanger = function(){
    this.navs = {};
    var lists = document.getElementById("nav").getElementsByTagName("img");	
	var lists2 = document.getElementById("nav2").getElementsByTagName("img");	
	var lists3 = document.getElementById("nav3").getElementsByTagName("img");	
	
    for( var i = 0, n = lists.length; i < n; i++ ){
        if( lists[i].className != '' ){
			this.navs[lists[i].className] = lists[i];
		}
		
		if( lists2[i].className != '' ){
			this.navs[lists2[i].className] = lists2[i];
		}
		
		if( lists3[i].className != '' ){
			this.navs[lists3[i].className] = lists3[i];
		}
    }

    this.ns = document.getElementById("main_visual");
    this.mainBg = document.getElementById("main_bg");
    this.links = document.getElementById("links").getElementsByTagName("a");
    this.pagelinks = document.getElementById("page_links").getElementsByTagName("a");
    this.description = document.getElementById("description");
	
    this.init();

    this.randomView();
};

visualChanger.prototype = {
    init: function(){
        for( var i in this.navs ){
            base.addevent( this.navs[i], "click", base.bind(this, this.listClickHandler, i));
            base.addevent( this.navs[i], "mouseover", base.bind(this, this.listOverHandler, i));
        }
    },

    //ランダム表示
    randomView: function(){
        var randomNum = Math.floor(Math.random() * setting.length);
        this.listClickHandler(null, setting.label[randomNum]);
    },

    //マウスクリック
    listClickHandler: function(e, item){
        //ns
        this.ns.className = item;

        //メイン画像
        this.mainBg.src = setting[item].main.path;
        this.mainBg.alt = setting[item].main.alt;

        //画像リンク
		if( item == 'porsche' ){
			this.createHtml(2);
		} else if( item == 'bmw5' || item == 'pologti' || item == 'cayenne' ) {
			this.createHtml(4);
		} else {
			this.createHtml(6);
		}

        var l = this.links.length;
		
        for( var i=0; i < l; i++ ){
            this.links[i].href = setting[item].link[i].path;
            this.links[i].rel = setting[item].link[i].alt;
            this.links[i].innerHTML = setting[item].link[i].alt;
        }

        //ページリンク
        var l = this.pagelinks.length;
        for( var i=0; i < l; i++ ){
            this.pagelinks[i].href = setting[item].link[i].link;
            this.pagelinks[i].innerHTML = setting[item].link[i].alt;
        }

        //説明文
        this.description.innerHTML = setting[item].description;

        //ナビゲーションの変更
        this.listSetCurrent(item);

        //イベントの停止
		if( e ){
        	base.preventDefault( e );
		}
    },

    //マウスオーバー
    listOverHandler: function(e, item){
        this.navs[item].style.cursor = "pointer";        
    },

    //ナビゲーションの反転対応
    listSetCurrent: function(item){
        for( var i in this.navs ){
            if( this.navs[i].className === item ){
                this.navs[i].src = this.navs[i].src.replace("_n","_o");
            } else {
                this.navs[i].src = this.navs[i].src.replace("_o","_n");
            }
        }
    },
	
	createHtml: function(num){
		var html = '';
		for( var i = 1; i < num+1; i++ ){
			html += '<li class="list0'+i+'"><a href="images/top/golf/img_ph_0'+i+'.jpg" rel=""></a></li>';
		}
		var parent = document.getElementById('links');
		parent.innerHTML = html;
		
		this.links = document.getElementById("links").getElementsByTagName("a");		
		$('#links li a').lightBox();
	}
};

var setting = {
    "length": 17,
    "label": ["mini","fiat","audi","audia4","golf","bmw","benz","porsche","impreza","legacy","crz","prius","bmw5","mito","pologti","ds3","cayenne"],
    /*----------------------------------------- mini  ----------------------------------------------------*/
    "mini": {
        "main": {
            "path": "images/top/mini/img_main_01.jpg",
            "alt" : "OZ×MINI"
        },
        "link": [
            { "path": "images/top/mini/img_ph_01.jpg", "alt": "Ultraleggera", "link": "products/racing/Ultraleggera/" },
            { "path": "images/top/mini/img_ph_02.jpg", "alt": "Leggenda", "link": "products/racing/Leggenda/" },
            { "path": "images/top/mini/img_ph_03.jpg", "alt": "Superturismo-LM", "link": "products/racing/ST_LM/" },
            { "path": "images/top/mini/img_ph_04.jpg", "alt": "Superturismo-GT", "link": "products/racing/ST_GT/" },
            { "path": "images/top/mini/img_ph_05.jpg", "alt": "Adrenalina", "link": "products/x_line/Adrenalina/" },
            { "path": "images/top/mini/img_ph_06.jpg", "alt": "Lounge", "link": "products/x_line/Lounge/" },
        ],
        "description" : "OZの記念すべき第1号製品は MINI 「ミニ（ローバー）」用ホイール。<br />その革新的なゴーカートのようなフォルムと共に、40年間デザイン革命を追い続けるOZ。<br />だからこそ表現できる様々なミニスタイル。さあ見つけてください 「OZ=MINI=YOU」 を！"
    },

    /*----------------------------------------- fiat  ----------------------------------------------------*/
    "fiat": {
        "main": {
            "path": "images/top/fiat/img_main_01.jpg",
            "alt" : "OZ×FIAT500"
        },
        "link": [
            { "path": "images/top/fiat/img_ph_01.jpg", "alt": "Leggenda", "link": "products/racing/Leggenda/" },
            { "path": "images/top/fiat/img_ph_02.jpg", "alt": "Quaranta", "link": "products/viaveneto/Qualanta/" },
            { "path": "images/top/fiat/img_ph_03.jpg", "alt": "Michelangero-1", "link": "products/viaveneto/Michelangelo_1/" },
            { "path": "images/top/fiat/img_ph_04.jpg", "alt": "Adrenalia", "link": "products/x_line/Adrenalina/" },
            { "path": "images/top/fiat/img_ph_05.jpg", "alt": "Wave", "link": "products/x_line/Wave/" },
            { "path": "images/top/fiat/img_ph_06.jpg", "alt": "Envy", "link": "products/x_line/Envy/" },
        ],
        "description" : "レトロポップなキャラクターで大人気の FIAT500（フィアット500 チンクエチェント）。<br />このイタリアン・スモールのドレスアップには、やはりイタリアン・デザインのOZホイールが相性バツグン！<br />こだわってほしい 「イタリアにはイタリア」 の、ブランドスタイルをご紹介！！"
    },

    /*----------------------------------------- audi  ----------------------------------------------------*/
    "audi": {
        "main": {
            "path": "images/top/audi/img_main_01.jpg",
            "alt" : "OZ×Audi A1"
        },
        "link": [
            { "path": "images/top/audi/img_ph_01.jpg", "alt": "Ultraleggera", "link": "products/racing/Ultraleggera/" },
            { "path": "images/top/audi/img_ph_02.jpg", "alt": "Superturismo-LM", "link": "products/racing/ST_LM/" },
            { "path": "images/top/audi/img_ph_03.jpg", "alt": "Quaranta", "link": "products/viaveneto/Qualanta/" },
            { "path": "images/top/audi/img_ph_04.jpg", "alt": "Michelangelo-1", "link": "products/viaveneto/Michelangelo_1/" },
            { "path": "images/top/audi/img_ph_05.jpg", "alt": "Envy", "link": "products/x_line/Envy/" },
            { "path": "images/top/audi/img_ph_06.jpg", "alt": "Wave", "link": "products/x_line/Wave/" },
        ],
        "description" : "スタイリッシュかつ斬新なデザインで、いま話題の Audi A1（アウディ・エーワン）。<br />日本にはないそのスタイルをさらに際立たせたいなら、インポートデザインならではのOZホイール！<br />デザインにはデザインを。さあ、ヨーロピアンスタイルで街を駆け抜けよう！"
    },
	
	/*----------------------------------------- audia4  ----------------------------------------------------*/
    "audia4": {
        "main": {
            "path": "images/top/audia4/img_main_01.jpg",
            "alt" : "OZ×Audi A4"
        },
        "link": [
            { "path": "images/top/audia4/img_ph_01.jpg", "alt": "Ultraleggera", "link": "products/racing/Ultraleggera/" },
            { "path": "images/top/audia4/img_ph_02.jpg", "alt": "Superturismo-LM", "link": "products/racing/ST_LM/" },
            { "path": "images/top/audia4/img_ph_03.jpg", "alt": "Quaranta", "link": "products/viaveneto/Qualanta/" },
            { "path": "images/top/audia4/img_ph_04.jpg", "alt": "Envy", "link": "products/x_line/Envy/" },
            { "path": "images/top/audia4/img_ph_05.jpg", "alt": "David", "link": "products/viaveneto/David/" },
            { "path": "images/top/audia4/img_ph_06.jpg", "alt": "Lounge", "link": "products/x_line/Lounge/" },
        ],
        "description" : "ハイクオリティなイメージのAudiブランドを代表する A4 （アウディ・エーフォー）。<br />この完成されたデザインを、さらに自分好みにモディファイするにはホイールのカスタマイズが一番。<br />OZは あなたとA4のための、ハイセンスなヨーロピアンデザインを多彩にラインナップ。"
    },

    /*----------------------------------------- golf  ----------------------------------------------------*/
    "golf": {
        "main": {
            "path": "images/top/golf/img_main_01.jpg",
            "alt" : "OZ×VW GOLF6"
        },
        "link": [
            { "path": "images/top/golf/img_ph_01.jpg", "alt": "Ultraleggera", "link": "products/racing/Ultraleggera/" },
            { "path": "images/top/golf/img_ph_02.jpg", "alt": "Superturismo-LM", "link": "products/racing/ST_LM/" },
            { "path": "images/top/golf/img_ph_03.jpg", "alt": "Superturismo-GT", "link": "products/racing/ST_GT/" },
            { "path": "images/top/golf/img_ph_04.jpg", "alt": "Quaranta", "link": "products/viaveneto/Qualanta/" },
            { "path": "images/top/golf/img_ph_05.jpg", "alt": "David", "link": "products/viaveneto/David/" },
            { "path": "images/top/golf/img_ph_06.jpg", "alt": "Envy", "link": "products/x_line/Envy/" },
        ],
        "description" : "インポートカーの代名詞 VW GOLF6 （フォルクスワーゲン・ゴルフ 6）。OZはヨーロピアンメーカーならではの<br />パーフェクトなバリエーション数で、ゴルフ6へのホイールをラインナップ。<br />レーシーにもシックにもクールにもドレスアップOK！ OZホイールでパーフェクトなゴルフ・スタイルを!!"
    },
	
	/*----------------------------------------- bmw  ----------------------------------------------------*/
    "bmw": {
        "main": {
            "path": "images/top/bmw/img_main_01.jpg",
            "alt" : "OZ×BMW 3er(E90)"
        },
        "link": [
            { "path": "images/top/bmw/img_ph_01.jpg", "alt": "Ultraleggera", "link": "products/racing/Ultraleggera/" },
            { "path": "images/top/bmw/img_ph_02.jpg", "alt": "Superturismo-LM", "link": "products/racing/ST_LM/" },
            { "path": "images/top/bmw/img_ph_03.jpg", "alt": "Superturismo-LM", "link": "products/racing/ST_LM/" },
            { "path": "images/top/bmw/img_ph_04.jpg", "alt": "Crono-3", "link": "products/topclass/Crono3/" },
            { "path": "images/top/bmw/img_ph_05.jpg", "alt": "Botticelli-3", "link": "/products/topclass/Botticelli-3/" },
            { "path": "images/top/bmw/img_ph_06.jpg", "alt": "Raffaello", "link": "products/topclass/Raffaello/" },
        ],
        "description" : "フロントからリアまで、デザインにステータスを感じる BMW 3シリーズ。<br />日本にはないその感性に拘る BMWオーナーに、OZのヨーロピアン・デザイン・ホイールをご紹介。レーシーに、シックに、ラグジュアリーに、あなた自身のステータスもアップさせるデザインがきっと見つかります。"
    },
	
	/*----------------------------------------- benz  ----------------------------------------------------*/
    "benz": {
        "main": {
            "path": "images/top/benz/img_main_01.jpg",
            "alt" : "OZ×Mercedes Benz C-Class(W204)"
        },
        "link": [
            { "path": "images/top/benz/img_ph_01.jpg", "alt": "Ultraleggera", "link": "products/racing/Ultraleggera/" },
            { "path": "images/top/benz/img_ph_02.jpg", "alt": "Superturismo-LM", "link": "products/racing/ST_LM/" },
            { "path": "images/top/benz/img_ph_03.jpg", "alt": "Quaranta", "link": "products/viaveneto/Qualanta/" },
            { "path": "images/top/benz/img_ph_04.jpg", "alt": "Envy", "link": "products/x_line/Envy/" },
            { "path": "images/top/benz/img_ph_05.jpg", "alt": "Michelangelo-1", "link": "products/viaveneto/Michelangelo_1/" },
            { "path": "images/top/benz/img_ph_06.jpg", "alt": "Lounge", "link": "products/x_line/Lounge/" },
        ],
        "description" : "OZのクオリティ文化は、常に最高品質を求める絶え間ない研究とデザイン開発、そして情熱の結晶です。<br />イタリアの彫刻を彷彿させる美しさ、そして強さは OZクオリティなくして語ることはできません。<br />だからこそクオリティに拘るメルセデスベンツ・オーナーに味わっていただきたい。OZがオススメする Cクラス用ホイールをご紹介。"
    },
	
	/*----------------------------------------- porsche  ----------------------------------------------------*/
    "porsche": {
        "main": {
            "path": "images/top/porsche/img_main_01.jpg",
            "alt" : "OZ×Porsche 911 GT3(997)"
        },
        "link": [
            { "path": "images/top/porsche/img_ph_01.jpg", "alt": "Superforgiata", "link": "products/i_tec/SuperForgiata/" },
            { "path": "images/top/porsche/img_ph_02.jpg", "alt": "Ultraleggera-HLT CL", "link": "products/i_tec/Ultra_HLT_CenterLock/" },
			{ "path": "", "alt": "", "link": "" },
			{ "path": "", "alt": "", "link": "" },
			{ "path": "", "alt": "", "link": "" },
			{ "path": "", "alt": "", "link": "" }
        ],
        "description" : "レースへの参戦を前提とするロードゴーイングカー Porshe 911 GT3（ポルシェ911ジーティースリー）。<br />OZはこのハイパフォーマンスカーのための、専用センターロック・ホイールを開発。<br />レーシーかつスタイリッシュなルックス、そしてOZ が誇るレーシングテクノロジーをダイレクトにフィードバックした、２つの最高峰スポーツホイールが誕生した。<br />さあ、レーシング・マニファクチャラーだけが語ることができる、走りの歓びをあなたに。"
    },
	
	/*----------------------------------------- prius  ----------------------------------------------------*/
    "prius": {
        "main": {
            "path": "images/top/prius/img_main_01.jpg",
            "alt" : "OZ×PRIUS"
        },
        "link": [
            { "path": "images/top/prius/img_ph_01.jpg", "alt": "Superturismo GT-EVO  [ Silver ]", "link": "products/racing/ST_GT_EVO/index2.php" },
            { "path": "images/top/prius/img_ph_02.jpg", "alt": "Superturismo GT-EVO  [ Gold ]", "link": "products/racing/ST_GT_EVO/" },
			{ "path": "images/top/prius/img_ph_03.jpg", "alt": "Superturismo-LM", "link": "products/racing/ST_LM/" },
			{ "path": "images/top/prius/img_ph_04.jpg", "alt": "Ultraleggera [ Crystal Titan ]", "link": "products/racing/Ultraleggera/index.php" },
			{ "path": "images/top/prius/img_ph_05.jpg", "alt": "Ultraleggera [ Matt Graphite Silver ]", "link": "products/racing/Ultraleggera/index3.php" },
			{ "path": "images/top/prius/img_ph_06.jpg", "alt": "Alleggerita", "link": "products/i_tec/Alleggerita/" }
        ],
        "description" : "未来へ走る世界初の量産ハイブリッドカー TOYOTA PRIUS（トヨタ プリウス）。環境にやさしいだけじゃもったいない。そのスタイリッシュなフォルムは、ちょっとしたカスタマイズで個性を演出できる魅力的なファッションアイテム。OZは軽量スポーツホイールでレーシーな魅力と軽快な走りを提案。地球のために、自分のために最高の走りを求めるドライバーへ！。"
    },
	
	/*----------------------------------------- crz  ----------------------------------------------------*/
    "crz": {
        "main": {
            "path": "images/top/crz/img_main_01.jpg",
            "alt" : "OZ×CR-Z"
        },
        "link": [
            { "path": "images/top/crz/img_ph_01.jpg", "alt": "Ultraleggera", "link": "products/racing/Ultraleggera/" },
            { "path": "images/top/crz/img_ph_02.jpg", "alt": "Superturismo-GT", "link": "products/racing/ST_GT/" },
			{ "path": "images/top/crz/img_ph_03.jpg", "alt": "Superturismo-WRC", "link": "products/racing/ST_WRC/" },
			{ "path": "images/top/crz/img_ph_04.jpg", "alt": "Superturismo-LM", "link": "products/racing/ST_LM/" },
			{ "path": "images/top/crz/img_ph_05.jpg", "alt": "Quaranta", "link": "products/viaveneto/Qualanta/" },
			{ "path": "images/top/crz/img_ph_06.jpg", "alt": "David", "link": "products/viaveneto/David/" }
        ],
        "description" : "「ドライビングの楽しさを忘れない」ホンダならではのコンセプトのもと誕生した、ハイブリッドスポーツカーCR-Z（シーアール・ズィー）。モータースポーツの遺伝子を受け継ぐスタイリング、新時代の走りはOZホイールでさらに魅力アップ！リアルレーシングDNAが注入された本物のスポーツホイールで、ドライビングの楽しさは倍増することでしょう。"
    },
	
	/*----------------------------------------- impreza  ----------------------------------------------------*/
    "impreza": {
        "main": {
            "path": "images/top/impreza/img_main_01.jpg",
            "alt" : "OZ×IMPREZA WRX STI"
        },
        "link": [
            { "path": "images/top/impreza/img_ph_01.jpg", "alt": "Superturismo-LM [ Matt Race Silver ]", "link": "products/racing/ST_LM/" },
            { "path": "images/top/impreza/img_ph_02.jpg", "alt": "Superturismo-LM [ Matt Graphite ]", "link": "products/racing/ST_LM/index2.php" },
			{ "path": "images/top/impreza/img_ph_03.jpg", "alt": "Superturismo-GT", "link": "products/racing/ST_GT/" },
			{ "path": "images/top/impreza/img_ph_04.jpg", "alt": "Ultraleggera [ Crystal Titan ]", "link": "products/racing/Ultraleggera/" },
			{ "path": "images/top/impreza/img_ph_05.jpg", "alt": "Ultraleggera [ Matt Black ]", "link": "products/racing/Ultraleggera/index4.php" },
			{ "path": "images/top/impreza/img_ph_06.jpg", "alt": "Ultraleggera [ Matt Graphite Silver ]", "link": "products/racing/Ultraleggera/index3.php" }
        ],
        "description" : "WRCの血統を守る IMPREZA（インプレッサ）WRX STI。圧倒的な存在感とパフォーマンスには、OZのレーシングシリーズがオススメ！ WRCをはじめ、世界のレースにサプライヤーとして参戦するOZだからこそ具現化できる本物のレーシングスタイル。愛車にOZのレーシングDNAをプラスすれば、走行する前から胸が高鳴ることでしょう。"
    },
	
	/*----------------------------------------- legacy  ----------------------------------------------------*/
    "legacy": {
        "main": {
            "path": "images/top/legacy/img_main_01.jpg",
            "alt" : "OZ×LEGACY"
        },
        "link": [
            { "path": "images/top/legacy/img_ph_01.jpg", "alt": "Superturismo GT-EVO  [ Silver ]", "link": "products/racing/ST_GT_EVO/index2.php" },
            { "path": "images/top/legacy/img_ph_02.jpg", "alt": "Superturismo GT-EVO  [ Gold ]", "link": "products/racing/ST_GT_EVO/" },
			{ "path": "images/top/legacy/img_ph_03.jpg", "alt": "Superturismo-LM ", "link": "products/racing/ST_LM/" },
			{ "path": "images/top/legacy/img_ph_04.jpg", "alt": "Ultraleggera [ Crystal Titan ]", "link": "products/racing/Ultraleggera/" },
			{ "path": "images/top/legacy/img_ph_05.jpg", "alt": "Ultraleggera [ Race Gold ]", "link": "products/racing/Ultraleggera/index2.php" },
			{ "path": "images/top/legacy/img_ph_06.jpg", "alt": "Alleggerita", "link": "products/i_tec/Alleggerita/" }
        ],
        "description" : "硬派な伝統と存在感、独自の世界で多くのファンに支持されるSUBARU LEGACY（スバル・レガシー）。<br />この車の魅力はスペックでは表せない、走りとルックスのテイスト。OZはここに硬派な大人のテイストをプラス提案。OZ伝統のスポーツホイールで、レガシーの魅力を最大限に味わえることでしょう。"
    },
	
	/*----------------------------------------- bmw5  ----------------------------------------------------*/
    "bmw5": {
        "main": {
            "path": "images/top/bmw5/img_main_01.jpg",
            "alt" : "OZ×BMW 5er(F10)"
        },
        "link": [
            { "path": "images/top/bmw5/img_ph_01.jpg", "alt": "Botticelli-3", "link": "products/topclass/Botticelli-3/" },
            { "path": "images/top/bmw5/img_ph_02.jpg", "alt": "Superturismo-LM", "link": "products/racing/ST_LM/" },
			{ "path": "images/top/bmw5/img_ph_03.jpg", "alt": "Raffaello", "link": "products/topclass/Raffaello/" },
			{ "path": "images/top/bmw5/img_ph_04.jpg", "alt": "Michelangelo-2 Patent Lip", "link": "products/topclass/Michelangelo2/" },
			{ "path": "", "alt": "", "link": "" },
			{ "path": "", "alt": "", "link": "" }
        ],
        "description" : "完璧なプロポーションと研ぎ澄まされた走り。<br />美しい肉体を持つアスリートのようなクルマ、NEW BMW 5シリーズ。<br />イタリアの美学が息づく OZホイールで、芸術的なアスリートへと昇華してみませんか。"
    },
	
	/*----------------------------------------- pologti  ----------------------------------------------------*/
    "pologti": {
        "main": {
            "path": "images/top/pologti/img_main_01.jpg",
            "alt" : "OZ×VW Polo GTI"
        },
        "link": [
            { "path": "images/top/pologti/img_ph_01.jpg", "alt": "Ultraleggera", "link": "products/racing/Ultraleggera/" },
            { "path": "images/top/pologti/img_ph_02.jpg", "alt": "Superturismo-GT", "link": "products/racing/ST_GT/" },
			{ "path": "images/top/pologti/img_ph_03.jpg", "alt": "Superturismo GT-EVO", "link": "products/racing/ST_GT_EVO/index2.php" },
			{ "path": "images/top/pologti/img_ph_04.jpg", "alt": "Lounge", "link": "products/x_line/Lounge/" },
			{ "path": "", "alt": "", "link": "" },
			{ "path": "", "alt": "", "link": "" }
        ],
        "description" : "走りの魂「GTI」の名を受け継ぐ、VolksWagen Polo GTI （フォルクスワーゲン・ポロ GTI）。<br />アクセルを踏んだ瞬間、コーナリングを駆け抜ける瞬間に実感する走りへのインビテーション。<br />Polo GTI と OZが追い求める走りへの情熱が、今リンクします。"
    },
	
	/*----------------------------------------- cayenne  ----------------------------------------------------*/
    "cayenne": {
        "main": {
            "path": "images/top/cayenne/img_main_01.jpg",
            "alt" : "OZ×VW Polo GTI"
        },
        "link": [
            { "path": "images/top/cayenne/img_ph_01.jpg", "alt": "Botticelli-3", "link": "products/topclass/Botticelli-3/" },
            { "path": "images/top/cayenne/img_ph_02.jpg", "alt": "Sardegna", "link": "products/all_terrain/Sardegna/" },
			{ "path": "images/top/cayenne/img_ph_03.jpg", "alt": "Superturismo-DAKAR [ Matt Race Silver ]", "link": "products/all_terrain/Superturismo_DAKAR/" },
			{ "path": "images/top/cayenne/img_ph_04.jpg", "alt": "Superturismo-DAKAR [ Matt Graphite ]", "link": "products/all_terrain/Superturismo_DAKAR/index2.php" },
			{ "path": "", "alt": "", "link": "" },
			{ "path": "", "alt": "", "link": "" }
        ],
        "description" : "卓越したパフォーマンスと存在感で他を圧倒するハイエンドSUV、Porshe Cayenne(ポルシェ・カイエン)。<br />このクルマを乗りこなす、アスファルトジャングルのエグゼクティブ達へ贈る OZのビッグアート。<br />全ては壮大に、そして全てはドラマティックに。"
    },
	
	/*----------------------------------------- ds3  ----------------------------------------------------*/
    "ds3": {
        "main": {
            "path": "images/top/ds3/img_main_01.jpg",
            "alt" : "OZ×CITROEN DS3"
        },
        "link": [
            { "path": "images/top/ds3/img_ph_01.jpg", "alt": "Ultraleggera", "link": "products/racing/Ultraleggera/" },
            { "path": "images/top/ds3/img_ph_02.jpg", "alt": "Superturismo-GT", "link": "products/racing/ST_GT/" },
			{ "path": "images/top/ds3/img_ph_03.jpg", "alt": "Superturismo-LM", "link": "products/racing/ST_LM/" },
			{ "path": "images/top/ds3/img_ph_04.jpg", "alt": "Leggenda", "link": "products/racing/Leggenda/" },
			{ "path": "images/top/ds3/img_ph_05.jpg", "alt": "Adrenalina", "link": "products/x_line/Adrenalina/" },
			{ "path": "images/top/ds3/img_ph_06.jpg", "alt": "Lounge", "link": "products/x_line/Lounge/" }
        ],
        "description" : "シトロエンのブランドコミュニケーション ”クリエーティブ”という言葉を、全身で表現する DS3。<br />一瞬で心を奪うルックス、その革新的な存在感は、自分らしさを演出できるビークル・パーソナリゼーション。<br />もっと自由に、もっと自分らしく、OZのオリジナリティ溢れるホイールで、あなたの思いのままの一台を。"
    },
	
	/*----------------------------------------- mito  ----------------------------------------------------*/
    "mito": {
        "main": {
            "path": "images/top/mito/img_main_01.jpg",
            "alt" : "OZ×AlfaRomeo MiTo"
        },
        "link": [
            { "path": "images/top/mito/img_ph_01.jpg", "alt": "Alleggerita-HLT", "link": "products/i_tec/Alleggerita/" },
            { "path": "images/top/mito/img_ph_02.jpg", "alt": "Ultraleggera", "link": "products/racing/Ultraleggera/" },
			{ "path": "images/top/mito/img_ph_03.jpg", "alt": "Superturismo-WRC", "link": "products/racing/ST_WRC/" },
			{ "path": "images/top/mito/img_ph_04.jpg", "alt": "Superturismo-LM", "link": "products/racing/ST_LM/" },
			{ "path": "images/top/mito/img_ph_05.jpg", "alt": "Leggenda", "link": "products/racing/Leggenda/" },
			{ "path": "images/top/mito/img_ph_06.jpg", "alt": "Adrenalina", "link": "products/x_line/Adrenalina/" }
        ],
        "description" : "まさしくイタリアンデザインと呼ぶにふさわしい、AlfaRomeo MiTo（アルファロメオ・ミト）。<br />このアルファならではの個性的なルックスには、やはりイタリアのOZホイールが相性バツグン！<br />全身で感じて欲しい、全身で表現してほしい、OZ×MiTo のイタリアンスタイル！"
    }
};


base.addevent(window, "load", function(){
    new visualChanger();       
});


