	var map = null;
	var pinID = 1;
	var findcontrol = false;
	var layerid=1;

	function GetMap() {
		map = new VEMap('map');
		map.LoadMap(new VELatLong(30.3275, -97.927), 10 ,'r' , false);
        var pin = new VEPushpin(
			pinID, 
			new VELatLong(30.3275, -97.927), 
            null, null, null
            );
        map.AddPushpin(pin);
        pinID++;
	}



	$(function() {
			   
    if (BrowserDetect.browser != "Safari" && BrowserDetect.browser != "Opera") {
		GetMap();
	} else {
		$('div#map').html('<img src="images/interior/map.gif" alt="" />');	
	}
	});

