﻿
$(document).ready(function() {
    $('.map').maphilight({ fade: false }); /*set true for fading hover effect*/
    $("area").easyTooltip();
});


// javascript fuction for the external javascript clickable map file
function A(URL,COORDS,ALT,LINK) {
    document.write('<AREA SHAPE="poly" ');
    if(URL != "")
    document.write('HREF="state.aspx?state=' + URL + '" '); /*This line where you configure the output URL, put your domain name address here */
    document.writeln('COORDS="' + COORDS + '" title="' + ALT + '" class="' + LINK + '">')
    //URL,COORDS,TITLE,CLASS
    //A("washington","312,29,...313,29,314","Washington","{linked:1}");
    //URL = page address
    //example 1 HREF="http://www.clickablemaps.com/' + URL + '.html" ' = http://www.clickablemaps.com/washington.html
    //example 1 HREF="http://www.clickablemaps.com/usa/' + URL + '" ' = http://www.clickablemaps.com/usa/washington/
} 
