﻿$(document).ready(function() {

    var imgid = "";
    $('.menu-hover').hover(function() {
        //alert('hover');
        if ($(this).attr("id") == "services") {
            imgid = "services-img";
            document.getElementById(imgid).src = '/Content/images/arrow-services.jpg';
            document.getElementById('index-banner').style.display = 'none';
            $("." + imgid).css("display", "block");
        }
        if ($(this).attr("id") == "industries") {
            imgid = "industries-img";
            document.getElementById(imgid).src = '/Content/images/arrow-industries.jpg';
            document.getElementById('index-banner').style.display = 'none';
            $("." + imgid).css("display", "block");
        }
        if ($(this).attr("id") == "infocenter") {
            imgid = "infocenter-img";
            document.getElementById(imgid).src = '/Content/images/arrow-info.jpg';
            document.getElementById('index-banner').style.display = 'none';
            $("." + imgid).css("display", "block");
        }
        if ($(this).attr("id") == "careers") {
            imgid = "careers-img";
            document.getElementById(imgid).src = '/Content/images/arrow-careers.jpg';
            document.getElementById('index-banner').style.display = 'none';
            $("." + imgid).css("display", "block");
        }
        if ($(this).attr("id") == "company") {
            imgid = "company-img";
            document.getElementById(imgid).src = '/Content/images/arrow-company.jpg';
            document.getElementById('index-banner').style.display = 'none';
            $("." + imgid).css("display", "block");
        }

    }, function() {
        document.getElementById('index-banner').style.display = 'block';
        $("." + imgid).css("display", "none");
        document.getElementById(imgid).src = '/Content/images/white.jpg';
    });
});