if (document.images) {


// 設定開始

// 画像1
var img1on = new Image();
img1on.src = "http://www.awa-ai.com/images_index/bu_isso2.gif";
var img1off = new Image();
img1off.src = "http://www.awa-ai.com/images_index/bu_isso1.gif";

// 画像2
var img2on = new Image();
img2on.src = "http://www.awa-ai.com/images_index/bu_ai2.gif";
var img2off = new Image();
img2off.src = "http://www.awa-ai.com/images_index/bu_ai1.gif";

// 画像3
var img3on = new Image();
img3on.src = "http://www.awa-ai.com/images_index/bu_works2.gif";
var img3off = new Image();
img3off.src = "http://www.awa-ai.com/images_index/bu_works1.gif";

// 画像4
var img4on = new Image();
img4on.src = "http://www.awa-ai.com/images_index/bu_gallery2.gif";
var img4off = new Image();
img4off.src = "http://www.awa-ai.com/images_index/bu_gallery1.gif";

// 画像5
var img5on = new Image();
img5on.src = "http://www.awa-ai.com/images_index/bu_news2.gif";
var img5off = new Image();
img5off.src = "http://www.awa-ai.com/images_index/bu_news1.gif";

// 画像6
var img6on = new Image();
img6on.src = "http://www.awa-ai.com/images_index/bu_contact2.gif";
var img6off = new Image();
img6off.src = "http://www.awa-ai.com/images_index/bu_contact1.gif";

// 画像7
var img7on = new Image();
img7on.src = "http://www.awa-ai.com/images_index/bu_jp2.gif";
var img7off = new Image();
img7off.src = "http://www.awa-ai.com/images_index/bu_jp1.gif";

// 画像8
var img8on = new Image();
img8on.src = "http://www.awa-ai.com/images_index/bu_en2.gif";
var img8off = new Image();
img8off.src = "http://www.awa-ai.com/images_index/bu_en1.gif";

// 画像1_blk
var img9on = new Image();
img9on.src = "http://www.awa-ai.com/images_index/bu_isso4.gif";
var img9off = new Image();
img9off.src = "http://www.awa-ai.com/images_index/bu_isso3.gif";

// 画像2_blk
var img10on = new Image();
img10on.src = "http://www.awa-ai.com/images_index/bu_ai4.gif";
var img10off = new Image();
img10off.src = "http://www.awa-ai.com/images_index/bu_ai3.gif";

// 画像3_blk
var img11on = new Image();
img11on.src = "http://www.awa-ai.com/images_index/bu_works4.gif";
var img11off = new Image();
img11off.src = "http://www.awa-ai.com/images_index/bu_works3.gif";

// 画像4_blk
var img12on = new Image();
img12on.src = "http://www.awa-ai.com/images_index/bu_gallery4.gif";
var img12off = new Image();
img12off.src = "http://www.awa-ai.com/images_index/bu_gallery3.gif";

// 画像5_blk
var img13on = new Image();
img13on.src = "http://www.awa-ai.com/images_index/bu_news4.gif";
var img13off = new Image();
img13off.src = "http://www.awa-ai.com/images_index/bu_news3.gif";

// 画像6_blk
var img14on = new Image();
img14on.src = "http://www.awa-ai.com/images_index/bu_contact4.gif";
var img14off = new Image();
img14off.src = "http://www.awa-ai.com/images_index/bu_contact3.gif";

// 画像7_blk
var img15on = new Image();
img15on.src = "http://www.awa-ai.com/images_index/bu_jp4.gif";
var img15off = new Image();
img15off.src = "http://www.awa-ai.com/images_index/bu_jp3.gif";

// 画像8_blk
var img16on = new Image();
img16on.src = "http://www.awa-ai.com/images_index/bu_en4.gif";
var img16off = new Image();
img16off.src = "http://www.awa-ai.com/images_index/bu_en3.gif";

// 画像9
var img17on = new Image();
img17on.src = "http://www.awa-ai.com/images_index/bu_link2.gif";
var img17off = new Image();
img17off.src = "http://www.awa-ai.com/images_index/bu_link1.gif";

// 画像9_blk
var img18on = new Image();
img18on.src = "http://www.awa-ai.com/images_index/bu_link4.gif";
var img18off = new Image();
img18off.src = "http://www.awa-ai.com/images_index/bu_link3.gif";

// 設定終了


}

// ポイント時
function On(name) {

if (document.images) {
document.images[name].src = eval(name + 'on.src');
}

}

// 放した時
function Off(name) {

if (document.images) {
document.images[name].src = eval(name + 'off.src');
}

} 



function disp(url){

window.open(url, "window_name", "width=780,height=521,scrollbars=no");

}

