﻿// ここからマイネットの定義
$(document).ready(function() {
    // マイネットポリシーの設定
    $('#ourPolicy').css('backgroundColor', "#F2FFF2");
    $('#ourPolicy').css('cursor', "pointer");
    $('#ourPolicy').bind('click', function(event) {
        location.href = 'service/index.aspx';
    });
    $('#ourPolicy').mouseover(function() {
        this.style.backgroundColor = "#FFCCCC";
    });
    $('#ourPolicy').mouseout(function() {
        this.style.backgroundColor = "#F2FFF2";
    });

    // サイドバナーの指定（飛び先）
    $('#banner1').bind('click', function(event) {
        location.href = 'Consulting/index.aspx';
    });
    $('#banner2').bind('click', function(event) {
        location.href = 'IT_Support/index.aspx';
    });
    $('#banner3').bind('click', function(event) {
        location.href = 'Development/index.aspx';
    });
    $('#banner4').bind('click', function(event) {
        location.href = 'Sales/PcSales.aspx';
    });
    $('#banner5').bind('click', function(event) {
        location.href = 'IT_Support/VirtualServer.aspx';
    });

    // サイドバナーの指定（動的イベント）
    $('#tblBanner tbody tr td').mouseover(function() {
        this.style.backgroundColor = "#FFCCCC";
    });
    $('#tblBanner tbody tr td').mouseout(function() {
        this.style.backgroundColor = "#DDDDDD";
    });

    // qTipの初期化起動
    tooltip.init();
});

