    function gmap() {
		
		var map = new GMap2(document.getElementById("map"));
		var mapTypeControl = new GMapTypeControl();
		var topRight = new GControlPosition(G_ANCHOR_TOP_RIGHT, new GSize(5,5));		
		map.addControl(mapTypeControl, topRight);
		GEvent.addListener(map, "dblclick", function() {
			  map.removeControl(mapTypeControl);
		});
		map.addControl(new GSmallMapControl());
		map.setCenter(new GLatLng(44.982574,-93.272338), 10);
    	map.setZoom(14);
		
		var baseIcon = new GIcon();
		baseIcon.shadow = "http://www.google.com/mapfiles/shadow50.png";
		baseIcon.iconSize = new GSize(20, 34);
		baseIcon.shadowSize = new GSize(37, 34);
		baseIcon.iconAnchor = new GPoint(9, 34);
		baseIcon.infoWindowAnchor = new GPoint(9, 2);
		baseIcon.infoShadowAnchor = new GPoint(18, 25);
		
		bubble = "<h4>Recursive Awesome</h4><p>123 N. 3rd St. Suite #802<BR>Minneapolis, MN<BR>55401<p>";
		
		var letteredIcon = new GIcon(baseIcon);
		letteredIcon.image = "http://www.google.com/mapfiles/marker.png";
		
		var point = new GLatLng(44.982574,-93.272338);
		marker = new GMarker(point);
		
		GEvent.addListener(marker, "click", function() {
			marker.openInfoWindowHtml(bubble);
		});		
		map.addOverlay(marker);		
	}
	function call(i){
             marker.openInfoWindowHtml(i);
	}
	function left_pos(on_li){
		var pos = $(on_li).position();
		var li_width = $(on_li).width();
		var img_width = $('#slider_img').width();
		return Math.floor((li_width-img_width)/2) + pos.left + parseInt($('#on_page').css('padding-left'));		
	}










