﻿$(document).ready(function() {
    //GetMap();
    
    // Check to make sure GetMap2 is available
    //if (window['GetMap2'] && typeof(window['GetMap2'])=='function') 
    //{
    //    GetMap2();
    //}

    //toggleHeadingsInit();

	//$("body").supersleight({shim: "http://www.graymad.com/stuff/x.gif"});
	$("#WMImg").hover(function(){
	$(this).attr("src", "http://www.myworldmaps.net/map.ashx/f970f8f9-ced2-4cc1-98ba-222ae02f5538/small/notrack");
	$(this).css("position", "relative");
	$(this).css("z-index", "999");
	$(this).animate({
		width: "450px"
		}, 500);
	},function(){
	$(this).attr("src", "http://www.myworldmaps.net/map.ashx/f970f8f9-ced2-4cc1-98ba-222ae02f5538/thumb/notrack");
	$(this).css("position", "relative");
	$(this).css("z-index", "1");
	$(this).animate({
		width: "190px"
		}, 500);
	});
});

