// function makeSrMap() {
//     var coords = {
//         "po": {
//             coords:"374,62, 375,57, 381,54, 381,46, 377,45, 370,40, 361,41, 353,36, 347,34, 347,27, 340,22, 334,19, 330,20, 322,13, 311,15, 307,15, 297,15, 286,17, 286,23, 280,27, 276,25, 269,21, 268,17, 259,19, 251,19, 245,23, 230,28, 230,37, 225,39, 219,34, 218,40, 218,44, 223,46, 224,60, 226,63, 228,67, 238,67, 239,61, 250,55, 266,59, 278,59, 285,62, 293,67, 297,68, 301,69, 316,67, 319,71, 329,74, 332,64, 342,64, 351,65, 355,62, 360,55, 368,61, 371,62, 374,62",
//             img: "po.gif"
//         },
//         "za": {
//             coords:"126,21, 132,13, 139,7, 150,11, 160,8, 163,19, 174,19, 179,8, 192,1, 202,17, 207,20, 213,34, 214,41, 220,51, 221,63, 226,67, 208,65, 197,60, 184,63, 181,69, 172,68, 165,73, 161,78, 148,80, 145,65, 141,61, 132,61, 140,54, 134,45, 134,40, 129,36, 126,28, 126,21",
//             img: "za.gif"
//         },
//         "tn": {
//             coords:"67,69, 73,78, 73,86, 80,84, 90,88, 99,88, 101,81, 114,88, 120,95, 121,101, 130,96, 140,89, 148,81, 147,73, 143,71, 141,63, 129,65, 129,61, 133,54, 133,46, 126,36, 121,27, 110,31, 110,43, 99,55, 96,61, 81,64, 76,69, 67,69",
//             img: "tn.gif"
//         },
//         "ba": {
//             coords:"27,114, 28,106, 32,99, 39,98, 51,98, 55,93, 62,91, 55,95, 58,102, 59,108, 65,112, 69,126, 67,131, 58,134, 55,137, 56,145, 48,150, 41,150, 40,139, 30,131, 31,120, 27,114",
//             img: "ba.gif"
//         },
//         "tr": {
//             coords:"33,94, 37,85, 44,78, 50,69, 55,67, 62,70, 67,73, 70,83, 70,88, 79,88, 85,88, 95,90, 99,90, 91,100, 95,106, 93,117, 90,122, 90,126, 88,133, 84,137, 91,145, 92,160, 86,163, 80,174, 75,168, 69,168, 55,153, 50,151, 59,143, 59,136, 65,131, 70,131, 70,120, 67,114, 65,108, 60,101, 63,98, 64,90, 63,87, 54,93, 42,94, 36,96, 33,94",
//             img: "tr.gif"
//         },
//         "nr": {
//             coords:"102,85, 111,88, 116,100, 121,104, 129,101, 132,112, 131,119, 131,124, 139,120, 147,116, 148,124, 148,134, 156,136, 162,136, 158,146, 151,148, 151,158, 150,163, 153,166, 143,170, 137,177, 129,177, 110,178, 98,175, 84,178, 82,177, 91,161, 95,153, 95,143, 88,136, 93,129, 93,122, 98,110, 96,99, 95,97, 101,92, 101,85, 102,85",
//             img: "nr.gif"
//         },
//         "bb": {
//             coords:"251,110, 251,117, 243,126, 231,132, 222,140, 213,136, 203,131, 193,132, 193,143, 182,146, 159,148, 165,132, 150,135, 150,128, 151,121, 148,113, 146,113, 141,118, 134,118, 135,111, 130,104, 130,98, 138,98, 154,82, 164,82, 164,73, 175,70, 178,72, 188,66, 203,66, 212,68, 225,70, 235,70, 231,82, 236,90, 239,99, 241,107, 250,109, 251,110",
//             img: "bb.gif"
//         },
//         "ke": {
//             coords:"253,107, 249,107, 245,107, 242,105, 243,99, 242,94, 235,83, 235,76, 243,67, 243,63, 248,58, 257,59, 261,61, 269,61, 275,61, 284,64, 288,66, 293,68, 298,73, 302,74, 306,71, 313,69, 322,75, 330,77, 335,75, 334,69, 336,67, 338,65, 345,69, 354,69, 357,64, 361,62, 366,66, 371,66, 370,74, 370,83, 363,91, 359,98, 360,112, 348,115, 336,120, 331,117, 325,112, 324,105, 320,105, 313,96, 308,100, 298,103, 290,106, 283,103, 278,102, 273,98, 261,101, 255,103, 253,107",
//             img: "ke.gif"
//         }
//     };
//     var imgmap = $('#srmap img');
//     var imgmap_src = imgmap.attr('src');
//     var imgmap_srcpath = imgmap_src.substring(0,imgmap_src.lastIndexOf('/'));
//     var m = $('<map name="srmap"></map>');
//     var areas = '';
//     $.each(coords,function (areaId,areaInfo) {
//         var a = $(document.createElement('area'));
//         a.attr('id',areaId);
//         a.attr('shape','poly');
//         a.attr('coords',areaInfo.coords);
//         a.attr('href','#');
//         a.hover(function () {
//             imgmap.attr('src',imgmap_srcpath + '/' + areaInfo.img);
//         },function () {
//             imgmap.attr('src',imgmap_src);
//         })
//         m.append(a);
//     });
//     imgmap.css('border','none');
//     imgmap.after(m);
//     imgmap.attr('usemap','#srmap');
// }

$(function () {
    // makeSrMap();
});
