ImageMapster Demo - snapshot with initial effects

HTML

<script src="http://www.outsharked.com/scripts/jquery.imagemapster.js"></script>
<img src="https://github.com/jamietre/ImageMapster/raw/master/examples/images/usa_map_720.png" 
usemap="#usa" style="width:400px;height:247px;">
<map id="usa_image_map" name="usa">
    <area href="#" state="TX" full="Texas" shape="poly" coords="259,256,275,257,298,258,296,275,296,288,296,289,299,292,301,293,302,293,302,291,303,293,305,293,305,291,307,293,306,295,309,296,311,296,314,296,316,298,317,296,320,297,322,299,323,299,323,301,324,302,326,300,327,300,329,300,329,302,333,304,334,303,335,300,336,300,337,302,340,302,343,303,345,304,347,303,347,301,350,301,351,302,353,300,354,300,355,302,358,302,359,300,360,300,362,302,364,304,366,304,368,305,370,307,372,305,374,306,374,314,374,321,375,329,376,331,377,334,378,338,381,341,381,344,382,344,381,350,379,354,380,356,380,358,380,363,378,365,379,368,374,369,367,372,366,374,364,375,362,376,362,377,358,380,356,382,352,385,347,386,343,389,342,390,338,392,335,393,332,397,329,397,329,398,330,400,329,404,329,407,328,410,327,413,328,415,329,420,329,425,331,426,330,428,328,429,324,426,320,425,319,425,317,425,314,423,310,422,304,419,302,417,302,412,299,411,299,409,299,409,299,406,299,406,298,405,299,402,298,400,296,399,293,396,290,392,287,389,287,388,284,379,283,376,282,374,282,374,278,370,275,368,275,367,274,365,269,365,263,364,261,362,258,364,255,365,254,367,253,370,250,374,248,376,246,375,245,374,243,374,241,372,241,372,239,371,236,369,230,363,229,360,229,354,227,350,226,347,224,347,224,345,221,344,219,342,214,337,213,335,210,332,209,329,207,327,206,327,205,323,211,324,232,326,253,327,254,310,257,270,259,256,260,256">
    <area href="#" state="TX" shape="poly" coords="332,426,331,421,329,416,329,410,329,404,332,399,335,395,337,393,338,393,334,398,331,403,329,407,329,411,329,416,332,421,332,425,332,425,332,426">

    <area href="#" state="NH" full="New Hampshire" shape="rect" coords="512,29,586,44">
    <area href="#" state="VT" full="Vermont"...

JavaScript

$('img').mapster({
    selected: true,
    isSelectable: false,
    isDeselectable: false,
    onClick:function(data){
    	console.log(data);
    }
});

//example of later change wait 5s plz
setTimeout(function(){
    console.log("here");
	$('img').mapster('set',false,'77');
	$('img').mapster('set',false,'75');
	$('img').mapster('set',false,'76');
	$('img').mapster('set',false,'74');
	$('img').mapster('set',false,'73');
    
    $('img').mapster('set_options',{
    	areas:[
        	{
                key: '77',
                render_highlight: {
                     fillOpacity: 0.0
                }
            },
        	{
                key: '75',
                render_highlight: {
                     fillOpacity: 0.0
                }
            },
        ]
    });
},5000);