﻿/// <reference path="jquery-1.3.2-vsdoc2.js" />
$(document).ready(function() {
    $("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();
}