﻿/// <reference path="jquery-1.3.2-vsdoc2.js" />
$(document).ready(function () {
    var notTouch = ('ontouchstart' in window) ? false : true;
    if (notTouch) {
        $("area").hover(
      function () {
          $('#language' + $(this).attr('lang') + 'Img').show();
      },
      function () {
          $('#language' + $(this).attr('lang') + 'Img').hide();
      }
    );
        $(".languageImg").hover(
      function () {
          $(this).show();
      },
      function () {
          $(this).hide();
      }
    );
    }
});

function showContactMapText(lang){
    $('.contactMapText').each(function(){
        $(this).hide(); 
    });
    $('#contact' + lang + 'MapText').show();
}
