﻿/*
    indexEvents.js
*/
$(function() {
    //
//    $("#body > .frame").append("<div id='pointArea'>&nbsp;</div>");
//    //説明表示用プレイスホルダ設定
//    $("body").append("<div id='glayLayer'></div>");
//    settings();
//    //    $("#glayLayer").hover(function() {
//    //        alert("message");
//    //    });
//    //    $("#pointArea").hover(function() {
//    //        $("#glayLayer").fadeIn();
//    //    }, function() { $("#glayLayer").fadeOut() });
//    timer = setTimeout(function() {
//        $("#glayLayer").fadeIn();
//        timer = null;
//    }, 2000);
});

function settings() {
    var divSize = { divWidth: 357, divHeight: 60 };
    $("#pointArea").css({
        "position": "absolute",
        "display": "block",
        "top": 235,
        "left": 241,
        "width": divSize.divWidth + "px",
        "height": divSize.divHeight + "px",
        "z-index": 10000,
        "cursor": "pointer"
        
    });
    $("#glayLayer").css({
        "position": "absolute",
        "top": 440,
        "left": 0,
        "width": $(window).width(),
        "height": 181,
        "background-color": "#000",
        "opacity": 0.55,
        "filter": "alpha(opacity=55)",
        "z-index": 9999,
        "cursor": "pointer",
        "display": "none"
    });
};


