var map;
var mapStart = new google.maps.LatLng(43.7695, -47.8906);
//Create zoom in button
function ZoomIn(controlDiv, map) {
	controlDiv.style.padding = '10px 10px 0 10px';
	var controlUI = document.createElement('DIV');
	controlUI.style.backgroundImage = 'url(http://childsplaycharity.org/assets/img/btn_map_zoom_in.png)';
	controlUI.style.cursor = 'pointer';
	controlUI.style.width = '22px';
	controlUI.style.height = '22px';
	controlUI.title = 'Zoom In';
	controlDiv.appendChild(controlUI);
	google.maps.event.addDomListener(controlUI, 'click', function() {map.setZoom(map.getZoom()+1);});
}
//Create zoom out button
function ZoomOut(controlDiv, map) {
	controlDiv.style.padding = '5px 10px 10px 10px';
	var controlUI = document.createElement('DIV');
	controlUI.style.backgroundImage = 'url(http://childsplaycharity.org/assets/img/btn_map_zoom_out.png)';
	controlUI.style.cursor = 'pointer';
	controlUI.style.width = '22px';
	controlUI.style.height = '22px';
	controlUI.title = 'Zoom Out';
	controlDiv.appendChild(controlUI);
	google.maps.event.addDomListener(controlUI, 'click', function() {map.setZoom(map.getZoom()-1);});
}
//Create Map
function initialize() {
	var mapDiv = document.getElementById('mapCanvas');
	var myOptions = {
		zoom: 3,
		center: mapStart,
		zoomControl: false,
		mapTypeControl: false,
		streetViewControl: false,
		mapTypeId: google.maps.MapTypeId.TERRAIN
	}
	map = new google.maps.Map(mapDiv, myOptions);
	//Create the DIV to hold the zoom out control
	var zoomOutControlDiv = document.createElement('DIV');
	var zoomOutControl = new ZoomOut(zoomOutControlDiv, map);
	zoomOutControlDiv.index = 1;
	map.controls[google.maps.ControlPosition.LEFT_TOP].push(zoomOutControlDiv);
	//Create the DIV to hold the zoom in control
	var zoomInControlDiv = document.createElement('DIV');
	var zoomInControl = new ZoomIn(zoomInControlDiv, map);
	zoomInControlDiv.index = 1;
	map.controls[google.maps.ControlPosition.TOP_LEFT].push(zoomInControlDiv);
	//Create map markers and pull in info from EE
	var curInfo = "";
	var curMarker = "";	
	var image = new google.maps.MarkerImage('http://childsplaycharity.org/assets/img/icon_map_marker.png',
		new google.maps.Size(17, 28),
		new google.maps.Point(0,0),
		new google.maps.Point(9, 28));
	var shadow = new google.maps.MarkerImage('http://childsplaycharity.org/assets/img/icon_map_marker_shadow.png',
		new google.maps.Size(24, 13),
		new google.maps.Point(0,0),
		new google.maps.Point(3, 12));
	
	
	var latlng17904 = new google.maps.LatLng(41.078978, -81.525578);	
	if("No" == "Yes"){
		var content17904 = '<div class="mapWindow">'+
		'<h2>Akron Children&#8217;s Hospital</h2>'+
		'<h4>Akron, OH</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/ITT0Z14H9INO/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content17904 = '<div class="mapWindow">'+
		'<h2>Akron Children&#8217;s Hospital</h2>'+
		'<h4>Akron, OH</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/ITT0Z14H9INO/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info17904 = new google.maps.InfoWindow({
		content: content17904
	});
	var decodedTitle = $("<div/>").html("Akron Children&#8217;s Hospital").text();
	var marker17904 = new google.maps.Marker({
		position: latlng17904,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker17904, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info17904.open(map,marker17904);
		curInfo = info17904;
		curMarker = marker17904;
	});
	
	var latlng17903 = new google.maps.LatLng(33.455783, -112.025421);	
	if("No" == "Yes"){
		var content17903 = '<div class="mapWindow">'+
		'<h2>Arizona Children&#8217;s Center</h2>'+
		'<h4>Phoenix, Arizona</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/1349UET30A8U2/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content17903 = '<div class="mapWindow">'+
		'<h2>Arizona Children&#8217;s Center</h2>'+
		'<h4>Phoenix, Arizona</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/1349UET30A8U2/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info17903 = new google.maps.InfoWindow({
		content: content17903
	});
	var decodedTitle = $("<div/>").html("Arizona Children&#8217;s Center").text();
	var marker17903 = new google.maps.Marker({
		position: latlng17903,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker17903, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info17903.open(map,marker17903);
		curInfo = info17903;
		curMarker = marker17903;
	});
	
	var latlng17902 = new google.maps.LatLng(37.251279, -79.941837);	
	if("No" == "Yes"){
		var content17902 = '<div class="mapWindow">'+
		'<h2>Carilion Children&#8217;s Hospital</h2>'+
		'<h4>Roanoke, VA</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/28K4FFMTA1R4W/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content17902 = '<div class="mapWindow">'+
		'<h2>Carilion Children&#8217;s Hospital</h2>'+
		'<h4>Roanoke, VA</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/28K4FFMTA1R4W/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info17902 = new google.maps.InfoWindow({
		content: content17902
	});
	var decodedTitle = $("<div/>").html("Carilion Children&#8217;s Hospital").text();
	var marker17902 = new google.maps.Marker({
		position: latlng17902,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker17902, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info17902.open(map,marker17902);
		curInfo = info17902;
		curMarker = marker17902;
	});
	
	var latlng17901 = new google.maps.LatLng(42.337226, -71.105393);	
	if("No" == "Yes"){
		var content17901 = '<div class="mapWindow">'+
		'<h2>Boston Children&#8217;s Hospital</h2>'+
		'<h4>Boston, MA</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/3BI2LVVRH4KZG/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content17901 = '<div class="mapWindow">'+
		'<h2>Boston Children&#8217;s Hospital</h2>'+
		'<h4>Boston, MA</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/3BI2LVVRH4KZG/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info17901 = new google.maps.InfoWindow({
		content: content17901
	});
	var decodedTitle = $("<div/>").html("Boston Children&#8217;s Hospital").text();
	var marker17901 = new google.maps.Marker({
		position: latlng17901,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker17901, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info17901.open(map,marker17901);
		curInfo = info17901;
		curMarker = marker17901;
	});
	
	var latlng17900 = new google.maps.LatLng(39.948870, -75.193790);	
	if("No" == "Yes"){
		var content17900 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Hospital of Philadelphia</h2>'+
		'<h4>Philadelphia, PA</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/3C5T8DNFCSELW/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content17900 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Hospital of Philadelphia</h2>'+
		'<h4>Philadelphia, PA</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/3C5T8DNFCSELW/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info17900 = new google.maps.InfoWindow({
		content: content17900
	});
	var decodedTitle = $("<div/>").html("Children&#8217;s Hospital of Philadelphia").text();
	var marker17900 = new google.maps.Marker({
		position: latlng17900,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker17900, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info17900.open(map,marker17900);
		curInfo = info17900;
		curMarker = marker17900;
	});
	
	var latlng17899 = new google.maps.LatLng(42.351668, -83.054648);	
	if("No" == "Yes"){
		var content17899 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Hospital Michigan</h2>'+
		'<h4>Detroit, MI</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/Q5RBG3RTFEJ5/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content17899 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Hospital Michigan</h2>'+
		'<h4>Detroit, MI</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/Q5RBG3RTFEJ5/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info17899 = new google.maps.InfoWindow({
		content: content17899
	});
	var decodedTitle = $("<div/>").html("Children&#8217;s Hospital Michigan").text();
	var marker17899 = new google.maps.Marker({
		position: latlng17899,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker17899, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info17899.open(map,marker17899);
		curInfo = info17899;
		curMarker = marker17899;
	});
	
	var latlng17898 = new google.maps.LatLng(37.836774, -122.267316);	
	if("No" == "Yes"){
		var content17898 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Hospital Oakland</h2>'+
		'<h4>Oakland, CA</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/72DGMQRUKSV/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content17898 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Hospital Oakland</h2>'+
		'<h4>Oakland, CA</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/72DGMQRUKSV/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info17898 = new google.maps.InfoWindow({
		content: content17898
	});
	var decodedTitle = $("<div/>").html("Children&#8217;s Hospital Oakland").text();
	var marker17898 = new google.maps.Marker({
		position: latlng17898,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker17898, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info17898.open(map,marker17898);
		curInfo = info17898;
		curMarker = marker17898;
	});
	
	var latlng17897 = new google.maps.LatLng(33.505391, -86.805877);	
	if("No" == "Yes"){
		var content17897 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Hospital of Alabama</h2>'+
		'<h4>Birmingham, AL</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/1567Q3N2AQ29X/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content17897 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Hospital of Alabama</h2>'+
		'<h4>Birmingham, AL</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/1567Q3N2AQ29X/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info17897 = new google.maps.InfoWindow({
		content: content17897
	});
	var decodedTitle = $("<div/>").html("Children&#8217;s Hospital of Alabama").text();
	var marker17897 = new google.maps.Marker({
		position: latlng17897,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker17897, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info17897.open(map,marker17897);
		curInfo = info17897;
		curMarker = marker17897;
	});
	
	var latlng17883 = new google.maps.LatLng(42.909268, -78.875054);	
	if("No" == "Yes"){
		var content17883 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Hospital of Buffalo</h2>'+
		'<h4>Buffalo, NY</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/AEX8CXEWPZL1/ref=cm_wl_rlist_go_o?" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content17883 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Hospital of Buffalo</h2>'+
		'<h4>Buffalo, NY</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/AEX8CXEWPZL1/ref=cm_wl_rlist_go_o?" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info17883 = new google.maps.InfoWindow({
		content: content17883
	});
	var decodedTitle = $("<div/>").html("Children&#8217;s Hospital of Buffalo").text();
	var marker17883 = new google.maps.Marker({
		position: latlng17883,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker17883, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info17883.open(map,marker17883);
		curInfo = info17883;
		curMarker = marker17883;
	});
	
	var latlng17713 = new google.maps.LatLng(50.723806, 7.109287);	
	if("No" == "Yes"){
		var content17713 = '<div class="mapWindow">'+
		'<h2>Förderkreis für krebskranke Kinder und Jugendliche Bonn e.V.</h2>'+
		'<h4>Bonn, Germany</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.de/gp/registry/wishlist/12QKQ999XGFUQ/ref=cm_wl_rlist_go_o?" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content17713 = '<div class="mapWindow">'+
		'<h2>Förderkreis für krebskranke Kinder und Jugendliche Bonn e.V.</h2>'+
		'<h4>Bonn, Germany</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.de/gp/registry/wishlist/12QKQ999XGFUQ/ref=cm_wl_rlist_go_o?" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info17713 = new google.maps.InfoWindow({
		content: content17713
	});
	var decodedTitle = $("<div/>").html("Förderkreis für krebskranke Kinder und Jugendliche Bonn e.V.").text();
	var marker17713 = new google.maps.Marker({
		position: latlng17713,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker17713, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info17713.open(map,marker17713);
		curInfo = info17713;
		curMarker = marker17713;
	});
	
	var latlng17563 = new google.maps.LatLng(59.33, 18.07);	
	if("Yes" == "Yes"){
		var content17563 = '<div class="mapWindow">'+
		'<h2>Astrid Lindgrens Barnsjukhus - Karolinska</h2>'+
		'<h4>Stockholm, Sweden</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="https://www.paypal.com/xclick/business=childsplaycharity@childsplaycharity.org&item_name=Childs%2BPlay%2BAstridLindgren&no_note=1&tax= " title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content17563 = '<div class="mapWindow">'+
		'<h2>Astrid Lindgrens Barnsjukhus - Karolinska</h2>'+
		'<h4>Stockholm, Sweden</h4>'+
		'<a class="btn btnSmlViewWishlist" href="https://www.paypal.com/xclick/business=childsplaycharity@childsplaycharity.org&item_name=Childs%2BPlay%2BAstridLindgren&no_note=1&tax= " title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info17563 = new google.maps.InfoWindow({
		content: content17563
	});
	var decodedTitle = $("<div/>").html("Astrid Lindgrens Barnsjukhus - Karolinska").text();
	var marker17563 = new google.maps.Marker({
		position: latlng17563,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker17563, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info17563.open(map,marker17563);
		curInfo = info17563;
		curMarker = marker17563;
	});
	
	var latlng17544 = new google.maps.LatLng(32.51, -93.75);	
	if("No" == "Yes"){
		var content17544 = '<div class="mapWindow">'+
		'<h2>The Children’s Hospital @ University Health</h2>'+
		'<h4>Shreveport, LA</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/1HCM6Q4DCM0CQ/?ie=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20&linkId=6ZWUS7C7IXRCPVHB" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content17544 = '<div class="mapWindow">'+
		'<h2>The Children’s Hospital @ University Health</h2>'+
		'<h4>Shreveport, LA</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/1HCM6Q4DCM0CQ/?ie=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20&linkId=6ZWUS7C7IXRCPVHB" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info17544 = new google.maps.InfoWindow({
		content: content17544
	});
	var decodedTitle = $("<div/>").html("The Children’s Hospital @ University Health").text();
	var marker17544 = new google.maps.Marker({
		position: latlng17544,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker17544, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info17544.open(map,marker17544);
		curInfo = info17544;
		curMarker = marker17544;
	});
	
	var latlng17543 = new google.maps.LatLng(45.25, -93.27);	
	if("No" == "Yes"){
		var content17543 = '<div class="mapWindow">'+
		'<h2>Shriners Hospital for Children - Twin Cities</h2>'+
		'<h4>Minneapolis, MN</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/3BIYGEGPI6Z67/?ie=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20&linkId=UFZXZT7EZHILXJV4" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content17543 = '<div class="mapWindow">'+
		'<h2>Shriners Hospital for Children - Twin Cities</h2>'+
		'<h4>Minneapolis, MN</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/3BIYGEGPI6Z67/?ie=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20&linkId=UFZXZT7EZHILXJV4" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info17543 = new google.maps.InfoWindow({
		content: content17543
	});
	var decodedTitle = $("<div/>").html("Shriners Hospital for Children - Twin Cities").text();
	var marker17543 = new google.maps.Marker({
		position: latlng17543,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker17543, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info17543.open(map,marker17543);
		curInfo = info17543;
		curMarker = marker17543;
	});
	
	var latlng17542 = new google.maps.LatLng(43.67, -70.27);	
	if("No" == "Yes"){
		var content17542 = '<div class="mapWindow">'+
		'<h2>Barbara Bush Children&#8217;s Hospital</h2>'+
		'<h4>Portland, ME</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/58ENQWYMV4JH/?ie=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20&linkId=AONAXYARO4OJIQW6" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content17542 = '<div class="mapWindow">'+
		'<h2>Barbara Bush Children&#8217;s Hospital</h2>'+
		'<h4>Portland, ME</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/58ENQWYMV4JH/?ie=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20&linkId=AONAXYARO4OJIQW6" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info17542 = new google.maps.InfoWindow({
		content: content17542
	});
	var decodedTitle = $("<div/>").html("Barbara Bush Children&#8217;s Hospital").text();
	var marker17542 = new google.maps.Marker({
		position: latlng17542,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker17542, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info17542.open(map,marker17542);
		curInfo = info17542;
		curMarker = marker17542;
	});
	
	var latlng17541 = new google.maps.LatLng(41.08, -85.14);	
	if("No" == "Yes"){
		var content17541 = '<div class="mapWindow">'+
		'<h2>Parkview Hospital</h2>'+
		'<h4>Fort Wayne, IN</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/81CELCZEJ5EQ/?ie=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20&linkId=YD22NSH2CZ2V7SUU" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content17541 = '<div class="mapWindow">'+
		'<h2>Parkview Hospital</h2>'+
		'<h4>Fort Wayne, IN</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/81CELCZEJ5EQ/?ie=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20&linkId=YD22NSH2CZ2V7SUU" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info17541 = new google.maps.InfoWindow({
		content: content17541
	});
	var decodedTitle = $("<div/>").html("Parkview Hospital").text();
	var marker17541 = new google.maps.Marker({
		position: latlng17541,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker17541, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info17541.open(map,marker17541);
		curInfo = info17541;
		curMarker = marker17541;
	});
	
	var latlng17540 = new google.maps.LatLng(36.33, -82.37);	
	if("No" == "Yes"){
		var content17540 = '<div class="mapWindow">'+
		'<h2>Niswonger Children&#8217;s Hospital</h2>'+
		'<h4>Johnson City, TN</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/21ZQD5DQZUUIO/?ie=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20&linkId=Y6XNERXG4H6V7EXN" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content17540 = '<div class="mapWindow">'+
		'<h2>Niswonger Children&#8217;s Hospital</h2>'+
		'<h4>Johnson City, TN</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/21ZQD5DQZUUIO/?ie=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20&linkId=Y6XNERXG4H6V7EXN" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info17540 = new google.maps.InfoWindow({
		content: content17540
	});
	var decodedTitle = $("<div/>").html("Niswonger Children&#8217;s Hospital").text();
	var marker17540 = new google.maps.Marker({
		position: latlng17540,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker17540, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info17540.open(map,marker17540);
		curInfo = info17540;
		curMarker = marker17540;
	});
	
	var latlng17495 = new google.maps.LatLng(47.50, -111.29);	
	if("No" == "Yes"){
		var content17495 = '<div class="mapWindow">'+
		'<h2>Benefis Health System</h2>'+
		'<h4>Great Falls, MT</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/2M8E1YBAKJRN4/?ie=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content17495 = '<div class="mapWindow">'+
		'<h2>Benefis Health System</h2>'+
		'<h4>Great Falls, MT</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/2M8E1YBAKJRN4/?ie=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info17495 = new google.maps.InfoWindow({
		content: content17495
	});
	var decodedTitle = $("<div/>").html("Benefis Health System").text();
	var marker17495 = new google.maps.Marker({
		position: latlng17495,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker17495, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info17495.open(map,marker17495);
		curInfo = info17495;
		curMarker = marker17495;
	});
	
	var latlng17026 = new google.maps.LatLng(-26.55, 153.02);	
	if("Yes" == "Yes"){
		var content17026 = '<div class="mapWindow">'+
		'<h2>Royal Brisbane &amp; Women&#8217;s Hospital</h2>'+
		'<h4>Herston, QLD</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="https://www.paypal.com/xclick/business=childsplaycharity@childsplaycharity.org&item_name=Childs%2BPlay%2BBrisbane&no_note=1&tax=" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content17026 = '<div class="mapWindow">'+
		'<h2>Royal Brisbane &amp; Women&#8217;s Hospital</h2>'+
		'<h4>Herston, QLD</h4>'+
		'<a class="btn btnSmlViewWishlist" href="https://www.paypal.com/xclick/business=childsplaycharity@childsplaycharity.org&item_name=Childs%2BPlay%2BBrisbane&no_note=1&tax=" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info17026 = new google.maps.InfoWindow({
		content: content17026
	});
	var decodedTitle = $("<div/>").html("Royal Brisbane &amp; Women&#8217;s Hospital").text();
	var marker17026 = new google.maps.Marker({
		position: latlng17026,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker17026, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info17026.open(map,marker17026);
		curInfo = info17026;
		curMarker = marker17026;
	});
	
	var latlng17025 = new google.maps.LatLng(12.97, 77.57);	
	if("Yes" == "Yes"){
		var content17025 = '<div class="mapWindow">'+
		'<h2>Manipal Hospital</h2>'+
		'<h4>Bangalore, India</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="https://www.paypal.com/xclick/business=childsplaycharity@childsplaycharity.org&item_name=Childs%2BPlay%2BBangalore&no_note=1&tax=" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content17025 = '<div class="mapWindow">'+
		'<h2>Manipal Hospital</h2>'+
		'<h4>Bangalore, India</h4>'+
		'<a class="btn btnSmlViewWishlist" href="https://www.paypal.com/xclick/business=childsplaycharity@childsplaycharity.org&item_name=Childs%2BPlay%2BBangalore&no_note=1&tax=" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info17025 = new google.maps.InfoWindow({
		content: content17025
	});
	var decodedTitle = $("<div/>").html("Manipal Hospital").text();
	var marker17025 = new google.maps.Marker({
		position: latlng17025,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker17025, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info17025.open(map,marker17025);
		curInfo = info17025;
		curMarker = marker17025;
	});
	
	var latlng16681 = new google.maps.LatLng(28.42, -81.30);	
	if("No" == "Yes"){
		var content16681 = '<div class="mapWindow">'+
		'<h2>Nemours Children&#8217;s Hospital</h2>'+
		'<h4>Orlando, FL</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/registry/wishlist/ZHOXYPX67IOT/?_encoding=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content16681 = '<div class="mapWindow">'+
		'<h2>Nemours Children&#8217;s Hospital</h2>'+
		'<h4>Orlando, FL</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/registry/wishlist/ZHOXYPX67IOT/?_encoding=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info16681 = new google.maps.InfoWindow({
		content: content16681
	});
	var decodedTitle = $("<div/>").html("Nemours Children&#8217;s Hospital").text();
	var marker16681 = new google.maps.Marker({
		position: latlng16681,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker16681, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info16681.open(map,marker16681);
		curInfo = info16681;
		curMarker = marker16681;
	});
	
	var latlng16475 = new google.maps.LatLng(53.35, -6.26);	
	if("No" == "Yes"){
		var content16475 = '<div class="mapWindow">'+
		'<h2>National Children&#8217;s Hospital</h2>'+
		'<h4>Dublin, Ireland</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.co.uk/registry/wishlist/11YNCDYQIF5A9?_encoding=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content16475 = '<div class="mapWindow">'+
		'<h2>National Children&#8217;s Hospital</h2>'+
		'<h4>Dublin, Ireland</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.co.uk/registry/wishlist/11YNCDYQIF5A9?_encoding=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info16475 = new google.maps.InfoWindow({
		content: content16475
	});
	var decodedTitle = $("<div/>").html("National Children&#8217;s Hospital").text();
	var marker16475 = new google.maps.Marker({
		position: latlng16475,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker16475, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info16475.open(map,marker16475);
		curInfo = info16475;
		curMarker = marker16475;
	});
	
	var latlng16461 = new google.maps.LatLng(41.19, -73.00);	
	if("No" == "Yes"){
		var content16461 = '<div class="mapWindow">'+
		'<h2>Yale New Haven Children&#8217;s Hospital</h2>'+
		'<h4>New Haven, CT</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/registry/wishlist/OBD95GC9VY68/?_encoding=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content16461 = '<div class="mapWindow">'+
		'<h2>Yale New Haven Children&#8217;s Hospital</h2>'+
		'<h4>New Haven, CT</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/registry/wishlist/OBD95GC9VY68/?_encoding=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info16461 = new google.maps.InfoWindow({
		content: content16461
	});
	var decodedTitle = $("<div/>").html("Yale New Haven Children&#8217;s Hospital").text();
	var marker16461 = new google.maps.Marker({
		position: latlng16461,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker16461, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info16461.open(map,marker16461);
		curInfo = info16461;
		curMarker = marker16461;
	});
	
	var latlng16371 = new google.maps.LatLng(36.92, -76.20);	
	if("No" == "Yes"){
		var content16371 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Hospital of the King&#8217;s Daughters</h2>'+
		'<h4>Norfolk, VA</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/registry/wishlist/2N6T4UOEBS9CQ/?_encoding=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content16371 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Hospital of the King&#8217;s Daughters</h2>'+
		'<h4>Norfolk, VA</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/registry/wishlist/2N6T4UOEBS9CQ/?_encoding=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info16371 = new google.maps.InfoWindow({
		content: content16371
	});
	var decodedTitle = $("<div/>").html("Children&#8217;s Hospital of the King&#8217;s Daughters").text();
	var marker16371 = new google.maps.Marker({
		position: latlng16371,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker16371, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info16371.open(map,marker16371);
		curInfo = info16371;
		curMarker = marker16371;
	});
	
	var latlng16370 = new google.maps.LatLng(28.00, -82.70);	
	if("No" == "Yes"){
		var content16370 = '<div class="mapWindow">'+
		'<h2>St. Joseph&#8217;s Children&#8217;s at Mease Countryside Hospital</h2>'+
		'<h4>Safety Harbor, FL</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/registry/wishlist/1I9RPW4H98KTH/?_encoding=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content16370 = '<div class="mapWindow">'+
		'<h2>St. Joseph&#8217;s Children&#8217;s at Mease Countryside Hospital</h2>'+
		'<h4>Safety Harbor, FL</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/registry/wishlist/1I9RPW4H98KTH/?_encoding=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info16370 = new google.maps.InfoWindow({
		content: content16370
	});
	var decodedTitle = $("<div/>").html("St. Joseph&#8217;s Children&#8217;s at Mease Countryside Hospital").text();
	var marker16370 = new google.maps.Marker({
		position: latlng16370,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker16370, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info16370.open(map,marker16370);
		curInfo = info16370;
		curMarker = marker16370;
	});
	
	var latlng16369 = new google.maps.LatLng(44.83, -93.46);	
	if("No" == "Yes"){
		var content16369 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Hospitals and Clinics of Minnesota</h2>'+
		'<h4>Minneapolis, MN</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/registry/wishlist/W6ZHBPBA3H2A/?_encoding=UTF8&camp=1789&creative=9325&layout=compact&linkCode=ur2&sort=da" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content16369 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Hospitals and Clinics of Minnesota</h2>'+
		'<h4>Minneapolis, MN</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/registry/wishlist/W6ZHBPBA3H2A/?_encoding=UTF8&camp=1789&creative=9325&layout=compact&linkCode=ur2&sort=da" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info16369 = new google.maps.InfoWindow({
		content: content16369
	});
	var decodedTitle = $("<div/>").html("Children&#8217;s Hospitals and Clinics of Minnesota").text();
	var marker16369 = new google.maps.Marker({
		position: latlng16369,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker16369, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info16369.open(map,marker16369);
		curInfo = info16369;
		curMarker = marker16369;
	});
	
	var latlng16367 = new google.maps.LatLng(25.68, -80.34);	
	if("No" == "Yes"){
		var content16367 = '<div class="mapWindow">'+
		'<h2>Baptist Children&#8217;s Hospital</h2>'+
		'<h4>Miami, FL</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/registry/wishlist/3R2AFYZJK0EIN/?_encoding=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content16367 = '<div class="mapWindow">'+
		'<h2>Baptist Children&#8217;s Hospital</h2>'+
		'<h4>Miami, FL</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/registry/wishlist/3R2AFYZJK0EIN/?_encoding=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info16367 = new google.maps.InfoWindow({
		content: content16367
	});
	var decodedTitle = $("<div/>").html("Baptist Children&#8217;s Hospital").text();
	var marker16367 = new google.maps.Marker({
		position: latlng16367,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker16367, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info16367.open(map,marker16367);
		curInfo = info16367;
		curMarker = marker16367;
	});
	
	var latlng13054 = new google.maps.LatLng(43.073, -89.401);	
	if("No" == "Yes"){
		var content13054 = '<div class="mapWindow">'+
		'<h2>American Family Children&#8217;s Hospital</h2>'+
		'<h4>Madison, Wisconsin</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/3R7A7KPZ1G30N/?ie=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content13054 = '<div class="mapWindow">'+
		'<h2>American Family Children&#8217;s Hospital</h2>'+
		'<h4>Madison, Wisconsin</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/3R7A7KPZ1G30N/?ie=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info13054 = new google.maps.InfoWindow({
		content: content13054
	});
	var decodedTitle = $("<div/>").html("American Family Children&#8217;s Hospital").text();
	var marker13054 = new google.maps.Marker({
		position: latlng13054,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker13054, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info13054.open(map,marker13054);
		curInfo = info13054;
		curMarker = marker13054;
	});
	
	var latlng13042 = new google.maps.LatLng(34.746, -92.289);	
	if("No" == "Yes"){
		var content13042 = '<div class="mapWindow">'+
		'<h2>Arkansas Children&#8217;s Hospital</h2>'+
		'<h4>Little Rock, Arkansas</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/380T1OIP9FA7V/?ie=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content13042 = '<div class="mapWindow">'+
		'<h2>Arkansas Children&#8217;s Hospital</h2>'+
		'<h4>Little Rock, Arkansas</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/380T1OIP9FA7V/?ie=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info13042 = new google.maps.InfoWindow({
		content: content13042
	});
	var decodedTitle = $("<div/>").html("Arkansas Children&#8217;s Hospital").text();
	var marker13042 = new google.maps.Marker({
		position: latlng13042,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker13042, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info13042.open(map,marker13042);
		curInfo = info13042;
		curMarker = marker13042;
	});
	
	var latlng13041 = new google.maps.LatLng(30.267, -97.743);	
	if("No" == "Yes"){
		var content13041 = '<div class="mapWindow">'+
		'<h2>Dell Children&#8217;s Hospital</h2>'+
		'<h4>Austin, Texas</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/LOVW2B3HU1CG/?ie=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content13041 = '<div class="mapWindow">'+
		'<h2>Dell Children&#8217;s Hospital</h2>'+
		'<h4>Austin, Texas</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/LOVW2B3HU1CG/?ie=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info13041 = new google.maps.InfoWindow({
		content: content13041
	});
	var decodedTitle = $("<div/>").html("Dell Children&#8217;s Hospital").text();
	var marker13041 = new google.maps.Marker({
		position: latlng13041,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker13041, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info13041.open(map,marker13041);
		curInfo = info13041;
		curMarker = marker13041;
	});
	
	var latlng12828 = new google.maps.LatLng(43.0481, -76.1478);	
	if("No" == "Yes"){
		var content12828 = '<div class="mapWindow">'+
		'<h2>Upstate Golisano Children&#8217;s Hospital</h2>'+
		'<h4>Syracuse NY</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/registry/wishlist/YR0JY3PFFENS/?_encoding=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content12828 = '<div class="mapWindow">'+
		'<h2>Upstate Golisano Children&#8217;s Hospital</h2>'+
		'<h4>Syracuse NY</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/registry/wishlist/YR0JY3PFFENS/?_encoding=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info12828 = new google.maps.InfoWindow({
		content: content12828
	});
	var decodedTitle = $("<div/>").html("Upstate Golisano Children&#8217;s Hospital").text();
	var marker12828 = new google.maps.Marker({
		position: latlng12828,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker12828, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info12828.open(map,marker12828);
		curInfo = info12828;
		curMarker = marker12828;
	});
	
	var latlng12827 = new google.maps.LatLng(45.4647, -98.4861);	
	if("No" == "Yes"){
		var content12827 = '<div class="mapWindow">'+
		'<h2>Sanford Aberdeen Medical Center</h2>'+
		'<h4>Aberdeen, SD</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/registry/wishlist/2PGMS1Y644QTJ/?_encoding=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content12827 = '<div class="mapWindow">'+
		'<h2>Sanford Aberdeen Medical Center</h2>'+
		'<h4>Aberdeen, SD</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/registry/wishlist/2PGMS1Y644QTJ/?_encoding=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info12827 = new google.maps.InfoWindow({
		content: content12827
	});
	var decodedTitle = $("<div/>").html("Sanford Aberdeen Medical Center").text();
	var marker12827 = new google.maps.Marker({
		position: latlng12827,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker12827, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info12827.open(map,marker12827);
		curInfo = info12827;
		curMarker = marker12827;
	});
	
	var latlng12826 = new google.maps.LatLng(42.9133, -85.7053);	
	if("No" == "Yes"){
		var content12826 = '<div class="mapWindow">'+
		'<h2>Metro Health Hospital</h2>'+
		'<h4>Wyoming, MI</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/registry/wishlist/3RCREANT11LI2/?_encoding=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content12826 = '<div class="mapWindow">'+
		'<h2>Metro Health Hospital</h2>'+
		'<h4>Wyoming, MI</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/registry/wishlist/3RCREANT11LI2/?_encoding=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info12826 = new google.maps.InfoWindow({
		content: content12826
	});
	var decodedTitle = $("<div/>").html("Metro Health Hospital").text();
	var marker12826 = new google.maps.Marker({
		position: latlng12826,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker12826, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info12826.open(map,marker12826);
		curInfo = info12826;
		curMarker = marker12826;
	});
	
	var latlng12825 = new google.maps.LatLng(39.7458, -75.5469);	
	if("No" == "Yes"){
		var content12825 = '<div class="mapWindow">'+
		'<h2>Nemours/Alfred I. duPont Hospital</h2>'+
		'<h4>Wilmington, DE</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/registry/wishlist/2P6G8W6D6QUZE/?_encoding=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content12825 = '<div class="mapWindow">'+
		'<h2>Nemours/Alfred I. duPont Hospital</h2>'+
		'<h4>Wilmington, DE</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/registry/wishlist/2P6G8W6D6QUZE/?_encoding=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info12825 = new google.maps.InfoWindow({
		content: content12825
	});
	var decodedTitle = $("<div/>").html("Nemours/Alfred I. duPont Hospital").text();
	var marker12825 = new google.maps.Marker({
		position: latlng12825,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker12825, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info12825.open(map,marker12825);
		curInfo = info12825;
		curMarker = marker12825;
	});
	
	var latlng12824 = new google.maps.LatLng(26.6403, -81.8725);	
	if("No" == "Yes"){
		var content12824 = '<div class="mapWindow">'+
		'<h2>Golisano Children&#8217;s Hospital of Southwest Florida</h2>'+
		'<h4>Fort Myers, FL</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/registry/wishlist/1Z27EQBBN3I7W/?_encoding=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content12824 = '<div class="mapWindow">'+
		'<h2>Golisano Children&#8217;s Hospital of Southwest Florida</h2>'+
		'<h4>Fort Myers, FL</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/registry/wishlist/1Z27EQBBN3I7W/?_encoding=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info12824 = new google.maps.InfoWindow({
		content: content12824
	});
	var decodedTitle = $("<div/>").html("Golisano Children&#8217;s Hospital of Southwest Florida").text();
	var marker12824 = new google.maps.Marker({
		position: latlng12824,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker12824, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info12824.open(map,marker12824);
		curInfo = info12824;
		curMarker = marker12824;
	});
	
	var latlng12823 = new google.maps.LatLng(36.9614, -120.0597);	
	if("No" == "Yes"){
		var content12823 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Hospital Central California</h2>'+
		'<h4>Madera, CA</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/registry/wishlist/2TH86SEQR6TFY/?_encoding=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content12823 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Hospital Central California</h2>'+
		'<h4>Madera, CA</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/registry/wishlist/2TH86SEQR6TFY/?_encoding=UTF8&camp=1789&creative=9325&linkCode=ur2&tag=childsplaycha-20" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info12823 = new google.maps.InfoWindow({
		content: content12823
	});
	var decodedTitle = $("<div/>").html("Children&#8217;s Hospital Central California").text();
	var marker12823 = new google.maps.Marker({
		position: latlng12823,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker12823, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info12823.open(map,marker12823);
		curInfo = info12823;
		curMarker = marker12823;
	});
	
	var latlng11653 = new google.maps.LatLng(33.78078, -117.86626);	
	if("No" == "Yes"){
		var content11653 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Hospital of Orange County</h2>'+
		'<h4>Orange, CA</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/registry/wishlist/3QGWR6OOZ32B0/?_encoding=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content11653 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Hospital of Orange County</h2>'+
		'<h4>Orange, CA</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/registry/wishlist/3QGWR6OOZ32B0/?_encoding=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info11653 = new google.maps.InfoWindow({
		content: content11653
	});
	var decodedTitle = $("<div/>").html("Children&#8217;s Hospital of Orange County").text();
	var marker11653 = new google.maps.Marker({
		position: latlng11653,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker11653, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info11653.open(map,marker11653);
		curInfo = info11653;
		curMarker = marker11653;
	});
	
	var latlng10338 = new google.maps.LatLng(53.38055, -1.49123);	
	if("No" == "Yes"){
		var content10338 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Hospital Sheffield</h2>'+
		'<h4>Sheffield, UK</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.co.uk/registry/wishlist/2E3VIDDJWF8LH?_encoding=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10338 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Hospital Sheffield</h2>'+
		'<h4>Sheffield, UK</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.co.uk/registry/wishlist/2E3VIDDJWF8LH?_encoding=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10338 = new google.maps.InfoWindow({
		content: content10338
	});
	var decodedTitle = $("<div/>").html("Children&#8217;s Hospital Sheffield").text();
	var marker10338 = new google.maps.Marker({
		position: latlng10338,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10338, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10338.open(map,marker10338);
		curInfo = info10338;
		curMarker = marker10338;
	});
	
	var latlng10337 = new google.maps.LatLng(27.76466, -82.64041);	
	if("No" == "Yes"){
		var content10337 = '<div class="mapWindow">'+
		'<h2>All Children&#8217;s Hospital</h2>'+
		'<h4>St. Petersburg, FL</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/229R0AI5RG57G/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10337 = '<div class="mapWindow">'+
		'<h2>All Children&#8217;s Hospital</h2>'+
		'<h4>St. Petersburg, FL</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/229R0AI5RG57G/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10337 = new google.maps.InfoWindow({
		content: content10337
	});
	var decodedTitle = $("<div/>").html("All Children&#8217;s Hospital").text();
	var marker10337 = new google.maps.Marker({
		position: latlng10337,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10337, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10337.open(map,marker10337);
		curInfo = info10337;
		curMarker = marker10337;
	});
	
	var latlng10336 = new google.maps.LatLng(33.47104, -81.98739);	
	if("No" == "Yes"){
		var content10336 = '<div class="mapWindow">'+
		'<h2>Georgia Health Sciences Children&#8217;s Medical Center</h2>'+
		'<h4>Augusta, GA</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/L2C8K6YGGAXL/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10336 = '<div class="mapWindow">'+
		'<h2>Georgia Health Sciences Children&#8217;s Medical Center</h2>'+
		'<h4>Augusta, GA</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/L2C8K6YGGAXL/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10336 = new google.maps.InfoWindow({
		content: content10336
	});
	var decodedTitle = $("<div/>").html("Georgia Health Sciences Children&#8217;s Medical Center").text();
	var marker10336 = new google.maps.Marker({
		position: latlng10336,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10336, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10336.open(map,marker10336);
		curInfo = info10336;
		curMarker = marker10336;
	});
	
	var latlng10335 = new google.maps.LatLng(42.27588, -71.76212);	
	if("No" == "Yes"){
		var content10335 = '<div class="mapWindow">'+
		'<h2>UMass Memorial Children&#8217;s Medical Center</h2>'+
		'<h4>Worcester, MA</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/17TK43YDZRIG9/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10335 = '<div class="mapWindow">'+
		'<h2>UMass Memorial Children&#8217;s Medical Center</h2>'+
		'<h4>Worcester, MA</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/17TK43YDZRIG9/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10335 = new google.maps.InfoWindow({
		content: content10335
	});
	var decodedTitle = $("<div/>").html("UMass Memorial Children&#8217;s Medical Center").text();
	var marker10335 = new google.maps.Marker({
		position: latlng10335,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10335, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10335.open(map,marker10335);
		curInfo = info10335;
		curMarker = marker10335;
	});
	
	var latlng10334 = new google.maps.LatLng(42.12119, -72.59223);	
	if("No" == "Yes"){
		var content10334 = '<div class="mapWindow">'+
		'<h2>Shriners Hospital for Children</h2>'+
		'<h4>Springfield, MA</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/1DLWSVWROEU7F/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10334 = '<div class="mapWindow">'+
		'<h2>Shriners Hospital for Children</h2>'+
		'<h4>Springfield, MA</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/1DLWSVWROEU7F/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10334 = new google.maps.InfoWindow({
		content: content10334
	});
	var decodedTitle = $("<div/>").html("Shriners Hospital for Children").text();
	var marker10334 = new google.maps.Marker({
		position: latlng10334,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10334, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10334.open(map,marker10334);
		curInfo = info10334;
		curMarker = marker10334;
	});
	
	var latlng10333 = new google.maps.LatLng(32.23996, -110.94606);	
	if("No" == "Yes"){
		var content10333 = '<div class="mapWindow">'+
		'<h2>Diamond Children&#8217;s Medical Center</h2>'+
		'<h4>Tuscon, AZ</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/3GU15PDAN6I09/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10333 = '<div class="mapWindow">'+
		'<h2>Diamond Children&#8217;s Medical Center</h2>'+
		'<h4>Tuscon, AZ</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/3GU15PDAN6I09/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10333 = new google.maps.InfoWindow({
		content: content10333
	});
	var decodedTitle = $("<div/>").html("Diamond Children&#8217;s Medical Center").text();
	var marker10333 = new google.maps.Marker({
		position: latlng10333,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10333, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10333.open(map,marker10333);
		curInfo = info10333;
		curMarker = marker10333;
	});
	
	var latlng10332 = new google.maps.LatLng(41.79036, -87.60464);	
	if("No" == "Yes"){
		var content10332 = '<div class="mapWindow">'+
		'<h2>Comer Children&#8217;s Hospital</h2>'+
		'<h4>Chicago, IL</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/24U92THQMVIWC/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10332 = '<div class="mapWindow">'+
		'<h2>Comer Children&#8217;s Hospital</h2>'+
		'<h4>Chicago, IL</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/24U92THQMVIWC/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10332 = new google.maps.InfoWindow({
		content: content10332
	});
	var decodedTitle = $("<div/>").html("Comer Children&#8217;s Hospital").text();
	var marker10332 = new google.maps.Marker({
		position: latlng10332,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10332, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10332.open(map,marker10332);
		curInfo = info10332;
		curMarker = marker10332;
	});
	
	var latlng10218 = new google.maps.LatLng(47.56622, -52.74625);	
	if("No" == "Yes"){
		var content10218 = '<div class="mapWindow">'+
		'<h2>Janeway Children&#8217;s Hospital</h2>'+
		'<h4>St. Johns, Newfoundland</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.ca/registry/wishlist/39SUI3E4LRMTC?_encoding=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10218 = '<div class="mapWindow">'+
		'<h2>Janeway Children&#8217;s Hospital</h2>'+
		'<h4>St. Johns, Newfoundland</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.ca/registry/wishlist/39SUI3E4LRMTC?_encoding=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10218 = new google.maps.InfoWindow({
		content: content10218
	});
	var decodedTitle = $("<div/>").html("Janeway Children&#8217;s Hospital").text();
	var marker10218 = new google.maps.Marker({
		position: latlng10218,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10218, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10218.open(map,marker10218);
		curInfo = info10218;
		curMarker = marker10218;
	});
	
	var latlng10216 = new google.maps.LatLng(44.63852, -63.58379);	
	if("No" == "Yes"){
		var content10216 = '<div class="mapWindow">'+
		'<h2>IWK Children&#8217;s Centre</h2>'+
		'<h4>Halifax, Nova Scotia</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.ca/registry/wishlist/1Y0DAAWUI25W8?_encoding=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10216 = '<div class="mapWindow">'+
		'<h2>IWK Children&#8217;s Centre</h2>'+
		'<h4>Halifax, Nova Scotia</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.ca/registry/wishlist/1Y0DAAWUI25W8?_encoding=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10216 = new google.maps.InfoWindow({
		content: content10216
	});
	var decodedTitle = $("<div/>").html("IWK Children&#8217;s Centre").text();
	var marker10216 = new google.maps.Marker({
		position: latlng10216,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10216, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10216.open(map,marker10216);
		curInfo = info10216;
		curMarker = marker10216;
	});
	
	var latlng10215 = new google.maps.LatLng(45.48975, -73.58595);	
	if("No" == "Yes"){
		var content10215 = '<div class="mapWindow">'+
		'<h2>Montreal Children&#8217;s Hospital</h2>'+
		'<h4>Montreal, Quebec</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.ca/registry/wishlist/1DQ3TPXHOPMH7?_encoding=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10215 = '<div class="mapWindow">'+
		'<h2>Montreal Children&#8217;s Hospital</h2>'+
		'<h4>Montreal, Quebec</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.ca/registry/wishlist/1DQ3TPXHOPMH7?_encoding=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10215 = new google.maps.InfoWindow({
		content: content10215
	});
	var decodedTitle = $("<div/>").html("Montreal Children&#8217;s Hospital").text();
	var marker10215 = new google.maps.Marker({
		position: latlng10215,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10215, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10215.open(map,marker10215);
		curInfo = info10215;
		curMarker = marker10215;
	});
	
	var latlng10214 = new google.maps.LatLng(45.39908, -75.65205);	
	if("No" == "Yes"){
		var content10214 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Hospital of Eastern Ontario</h2>'+
		'<h4>Ottawa, Ontario</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.ca/registry/wishlist/2P7MJM0J89AIV?_encoding=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10214 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Hospital of Eastern Ontario</h2>'+
		'<h4>Ottawa, Ontario</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.ca/registry/wishlist/2P7MJM0J89AIV?_encoding=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10214 = new google.maps.InfoWindow({
		content: content10214
	});
	var decodedTitle = $("<div/>").html("Children&#8217;s Hospital of Eastern Ontario").text();
	var marker10214 = new google.maps.Marker({
		position: latlng10214,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10214, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10214.open(map,marker10214);
		curInfo = info10214;
		curMarker = marker10214;
	});
	
	var latlng10212 = new google.maps.LatLng(43.65721, -79.38781);	
	if("No" == "Yes"){
		var content10212 = '<div class="mapWindow">'+
		'<h2>Hospital for Sick Children (Toronto)</h2>'+
		'<h4>Toronto, ON</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.ca/registry/wishlist/3GC475G8UQ429?_encoding=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10212 = '<div class="mapWindow">'+
		'<h2>Hospital for Sick Children (Toronto)</h2>'+
		'<h4>Toronto, ON</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.ca/registry/wishlist/3GC475G8UQ429?_encoding=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10212 = new google.maps.InfoWindow({
		content: content10212
	});
	var decodedTitle = $("<div/>").html("Hospital for Sick Children (Toronto)").text();
	var marker10212 = new google.maps.Marker({
		position: latlng10212,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10212, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10212.open(map,marker10212);
		curInfo = info10212;
		curMarker = marker10212;
	});
	
	var latlng10211 = new google.maps.LatLng(49.90276, -97.15679);	
	if("No" == "Yes"){
		var content10211 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Hospital of Winnipeg</h2>'+
		'<h4>Winnipeg, MB</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.ca/registry/wishlist/1AHKFM6B2202M?_encoding=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10211 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Hospital of Winnipeg</h2>'+
		'<h4>Winnipeg, MB</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.ca/registry/wishlist/1AHKFM6B2202M?_encoding=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10211 = new google.maps.InfoWindow({
		content: content10211
	});
	var decodedTitle = $("<div/>").html("Children&#8217;s Hospital of Winnipeg").text();
	var marker10211 = new google.maps.Marker({
		position: latlng10211,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10211, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10211.open(map,marker10211);
		curInfo = info10211;
		curMarker = marker10211;
	});
	
	var latlng10210 = new google.maps.LatLng(51.12951, -114.12982);	
	if("No" == "Yes"){
		var content10210 = '<div class="mapWindow">'+
		'<h2>Alberta Children&#8217;s Hospital</h2>'+
		'<h4>Calgary, AB</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.ca/registry/wishlist/2G88UJECD07B1?_encoding=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10210 = '<div class="mapWindow">'+
		'<h2>Alberta Children&#8217;s Hospital</h2>'+
		'<h4>Calgary, AB</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.ca/registry/wishlist/2G88UJECD07B1?_encoding=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10210 = new google.maps.InfoWindow({
		content: content10210
	});
	var decodedTitle = $("<div/>").html("Alberta Children&#8217;s Hospital").text();
	var marker10210 = new google.maps.Marker({
		position: latlng10210,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10210, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10210.open(map,marker10210);
		curInfo = info10210;
		curMarker = marker10210;
	});
	
	var latlng10209 = new google.maps.LatLng(48.46650, -123.43306);	
	if("No" == "Yes"){
		var content10209 = '<div class="mapWindow">'+
		'<h2>Victoria General Hospital</h2>'+
		'<h4>Victoria, BC</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.ca/registry/wishlist/J247WG7VUS6E?_encoding=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10209 = '<div class="mapWindow">'+
		'<h2>Victoria General Hospital</h2>'+
		'<h4>Victoria, BC</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.ca/registry/wishlist/J247WG7VUS6E?_encoding=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10209 = new google.maps.InfoWindow({
		content: content10209
	});
	var decodedTitle = $("<div/>").html("Victoria General Hospital").text();
	var marker10209 = new google.maps.Marker({
		position: latlng10209,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10209, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10209.open(map,marker10209);
		curInfo = info10209;
		curMarker = marker10209;
	});
	
	var latlng10208 = new google.maps.LatLng(49.24505, -123.12744);	
	if("No" == "Yes"){
		var content10208 = '<div class="mapWindow">'+
		'<h2>BC Children&#8217;s Hospital</h2>'+
		'<h4>Vancouver, BC</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.ca/registry/wishlist/3QKYFZ0Y4EDMF?_encoding=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10208 = '<div class="mapWindow">'+
		'<h2>BC Children&#8217;s Hospital</h2>'+
		'<h4>Vancouver, BC</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.ca/registry/wishlist/3QKYFZ0Y4EDMF?_encoding=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10208 = new google.maps.InfoWindow({
		content: content10208
	});
	var decodedTitle = $("<div/>").html("BC Children&#8217;s Hospital").text();
	var marker10208 = new google.maps.Marker({
		position: latlng10208,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10208, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10208.open(map,marker10208);
		curInfo = info10208;
		curMarker = marker10208;
	});
	
	var latlng10186 = new google.maps.LatLng(53.42125, -2.89780);	
	if("No" == "Yes"){
		var content10186 = '<div class="mapWindow">'+
		'<h2>Alder Hey Children&#8217;s Hospital</h2>'+
		'<h4>Liverpool, UK</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.co.uk/registry/wishlist/12XFM2SFCNINR?_encoding=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10186 = '<div class="mapWindow">'+
		'<h2>Alder Hey Children&#8217;s Hospital</h2>'+
		'<h4>Liverpool, UK</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.co.uk/registry/wishlist/12XFM2SFCNINR?_encoding=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10186 = new google.maps.InfoWindow({
		content: content10186
	});
	var decodedTitle = $("<div/>").html("Alder Hey Children&#8217;s Hospital").text();
	var marker10186 = new google.maps.Marker({
		position: latlng10186,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10186, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10186.open(map,marker10186);
		curInfo = info10186;
		curMarker = marker10186;
	});
	
	var latlng10185 = new google.maps.LatLng(53.46609, -2.23365);	
	if("No" == "Yes"){
		var content10185 = '<div class="mapWindow">'+
		'<h2>Royal Manchester Children&#8217;s Hospital</h2>'+
		'<h4>Manchester, UK</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.co.uk/registry/wishlist/2LL7MUJ1XN3BN?_encoding=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10185 = '<div class="mapWindow">'+
		'<h2>Royal Manchester Children&#8217;s Hospital</h2>'+
		'<h4>Manchester, UK</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.co.uk/registry/wishlist/2LL7MUJ1XN3BN?_encoding=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10185 = new google.maps.InfoWindow({
		content: content10185
	});
	var decodedTitle = $("<div/>").html("Royal Manchester Children&#8217;s Hospital").text();
	var marker10185 = new google.maps.Marker({
		position: latlng10185,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10185, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10185.open(map,marker10185);
		curInfo = info10185;
		curMarker = marker10185;
	});
	
	var latlng10184 = new google.maps.LatLng(30.06474, 31.24951);	
	if("Yes" == "Yes"){
		var content10184 = '<div class="mapWindow">'+
		'<h2>Cairo Children&#8217;s Cancer Hospital</h2>'+
		'<h4>Cairo, Egypt</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="https://www.paypal.com/xclick/business=childsplaycharity@childsplaycharity.org&item_name=Childs%2BPlay%2BEgypt&no_note=1&tax=0&c" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10184 = '<div class="mapWindow">'+
		'<h2>Cairo Children&#8217;s Cancer Hospital</h2>'+
		'<h4>Cairo, Egypt</h4>'+
		'<a class="btn btnSmlViewWishlist" href="https://www.paypal.com/xclick/business=childsplaycharity@childsplaycharity.org&item_name=Childs%2BPlay%2BEgypt&no_note=1&tax=0&c" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10184 = new google.maps.InfoWindow({
		content: content10184
	});
	var decodedTitle = $("<div/>").html("Cairo Children&#8217;s Cancer Hospital").text();
	var marker10184 = new google.maps.Marker({
		position: latlng10184,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10184, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10184.open(map,marker10184);
		curInfo = info10184;
		curMarker = marker10184;
	});
	
	var latlng10183 = new google.maps.LatLng(-36.86046, 174.76913);	
	if("Yes" == "Yes"){
		var content10183 = '<div class="mapWindow">'+
		'<h2>Starship Children&#8217;s Health</h2>'+
		'<h4>Auckland, NZ</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="https://www.paypal.com/xclick/business=childsplaycharity@childsplaycharity.org&item_name=Childs%2BPlay%2BAucklan&no_note=1&tax= " title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10183 = '<div class="mapWindow">'+
		'<h2>Starship Children&#8217;s Health</h2>'+
		'<h4>Auckland, NZ</h4>'+
		'<a class="btn btnSmlViewWishlist" href="https://www.paypal.com/xclick/business=childsplaycharity@childsplaycharity.org&item_name=Childs%2BPlay%2BAucklan&no_note=1&tax= " title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10183 = new google.maps.InfoWindow({
		content: content10183
	});
	var decodedTitle = $("<div/>").html("Starship Children&#8217;s Health").text();
	var marker10183 = new google.maps.Marker({
		position: latlng10183,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10183, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10183.open(map,marker10183);
		curInfo = info10183;
		curMarker = marker10183;
	});
	
	var latlng10182 = new google.maps.LatLng(-33.91444, 151.24164);	
	if("Yes" == "Yes"){
		var content10182 = '<div class="mapWindow">'+
		'<h2>Sydney Children&#8217;s Hospital</h2>'+
		'<h4>Sydney, AU</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="https://www.paypal.com/xclick/business=childsplaycharity@childsplaycharity.org&item_name=Childs%2BPlay%2BSydney&no_note=1&tax=" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10182 = '<div class="mapWindow">'+
		'<h2>Sydney Children&#8217;s Hospital</h2>'+
		'<h4>Sydney, AU</h4>'+
		'<a class="btn btnSmlViewWishlist" href="https://www.paypal.com/xclick/business=childsplaycharity@childsplaycharity.org&item_name=Childs%2BPlay%2BSydney&no_note=1&tax=" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10182 = new google.maps.InfoWindow({
		content: content10182
	});
	var decodedTitle = $("<div/>").html("Sydney Children&#8217;s Hospital").text();
	var marker10182 = new google.maps.Marker({
		position: latlng10182,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10182, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10182.open(map,marker10182);
		curInfo = info10182;
		curMarker = marker10182;
	});
	
	var latlng10181 = new google.maps.LatLng(-27.48468, 153.02655);	
	if("Yes" == "Yes"){
		var content10181 = '<div class="mapWindow">'+
		'<h2>Mater Children&#8217;s Hospital</h2>'+
		'<h4>Brisbane, AU</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="https://www.paypal.com/xclick/business=childsplaycharity@childsplaycharity.org&item_name=Childs%2BPlay%2BBrisbane&no_note=1&tax=" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10181 = '<div class="mapWindow">'+
		'<h2>Mater Children&#8217;s Hospital</h2>'+
		'<h4>Brisbane, AU</h4>'+
		'<a class="btn btnSmlViewWishlist" href="https://www.paypal.com/xclick/business=childsplaycharity@childsplaycharity.org&item_name=Childs%2BPlay%2BBrisbane&no_note=1&tax=" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10181 = new google.maps.InfoWindow({
		content: content10181
	});
	var decodedTitle = $("<div/>").html("Mater Children&#8217;s Hospital").text();
	var marker10181 = new google.maps.Marker({
		position: latlng10181,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10181, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10181.open(map,marker10181);
		curInfo = info10181;
		curMarker = marker10181;
	});
	
	var latlng10144 = new google.maps.LatLng(39.65332, -79.95735);	
	if("No" == "Yes"){
		var content10144 = '<div class="mapWindow">'+
		'<h2>WVU Children&#8217;s Hospital</h2>'+
		'<h4>Morgantown, WV</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/2U22YHAM4522L/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10144 = '<div class="mapWindow">'+
		'<h2>WVU Children&#8217;s Hospital</h2>'+
		'<h4>Morgantown, WV</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/2U22YHAM4522L/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10144 = new google.maps.InfoWindow({
		content: content10144
	});
	var decodedTitle = $("<div/>").html("WVU Children&#8217;s Hospital").text();
	var marker10144 = new google.maps.Marker({
		position: latlng10144,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10144, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10144.open(map,marker10144);
		curInfo = info10144;
		curMarker = marker10144;
	});
	
	var latlng10143 = new google.maps.LatLng(36.13889, -86.80226);	
	if("No" == "Yes"){
		var content10143 = '<div class="mapWindow">'+
		'<h2>Vanderbilt Children&#8217;s Hospital</h2>'+
		'<h4>Nashville, TN</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/27W4LJWH3RXUI/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10143 = '<div class="mapWindow">'+
		'<h2>Vanderbilt Children&#8217;s Hospital</h2>'+
		'<h4>Nashville, TN</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/27W4LJWH3RXUI/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10143 = new google.maps.InfoWindow({
		content: content10143
	});
	var decodedTitle = $("<div/>").html("Vanderbilt Children&#8217;s Hospital").text();
	var marker10143 = new google.maps.Marker({
		position: latlng10143,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10143, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10143.open(map,marker10143);
		curInfo = info10143;
		curMarker = marker10143;
	});
	
	var latlng10142 = new google.maps.LatLng(38.04683, -78.51981);	
	if("No" == "Yes"){
		var content10142 = '<div class="mapWindow">'+
		'<h2>UVA Children&#8217;s Hospital</h2>'+
		'<h4>Charlottesville, VA</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/3T6OM7G10DRO/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10142 = '<div class="mapWindow">'+
		'<h2>UVA Children&#8217;s Hospital</h2>'+
		'<h4>Charlottesville, VA</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/3T6OM7G10DRO/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10142 = new google.maps.InfoWindow({
		content: content10142
	});
	var decodedTitle = $("<div/>").html("UVA Children&#8217;s Hospital").text();
	var marker10142 = new google.maps.Marker({
		position: latlng10142,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10142, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10142.open(map,marker10142);
		curInfo = info10142;
		curMarker = marker10142;
	});
	
	var latlng10141 = new google.maps.LatLng(36.15896, -115.16558);	
	if("No" == "Yes"){
		var content10141 = '<div class="mapWindow">'+
		'<h2>University Medical Las Vegas</h2>'+
		'<h4>Las Vegas, NV</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/2P9USCNC58BVP/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10141 = '<div class="mapWindow">'+
		'<h2>University Medical Las Vegas</h2>'+
		'<h4>Las Vegas, NV</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/2P9USCNC58BVP/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10141 = new google.maps.InfoWindow({
		content: content10141
	});
	var decodedTitle = $("<div/>").html("University Medical Las Vegas").text();
	var marker10141 = new google.maps.Marker({
		position: latlng10141,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10141, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10141.open(map,marker10141);
		curInfo = info10141;
		curMarker = marker10141;
	});
	
	var latlng10140 = new google.maps.LatLng(41.65737, -91.54989);	
	if("No" == "Yes"){
		var content10140 = '<div class="mapWindow">'+
		'<h2>U of Iowa Children&#8217;s Hospital</h2>'+
		'<h4>Iowa City, IA</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/1PKKC7IYINC72/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10140 = '<div class="mapWindow">'+
		'<h2>U of Iowa Children&#8217;s Hospital</h2>'+
		'<h4>Iowa City, IA</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/1PKKC7IYINC72/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10140 = new google.maps.InfoWindow({
		content: content10140
	});
	var decodedTitle = $("<div/>").html("U of Iowa Children&#8217;s Hospital").text();
	var marker10140 = new google.maps.Marker({
		position: latlng10140,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10140, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10140.open(map,marker10140);
		curInfo = info10140;
		curMarker = marker10140;
	});
	
	var latlng10139 = new google.maps.LatLng(29.95592, -90.07538);	
	if("No" == "Yes"){
		var content10139 = '<div class="mapWindow">'+
		'<h2>Tulane Hospital for Children</h2>'+
		'<h4>New Orleans, LA</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/MBNB3DB3X597/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10139 = '<div class="mapWindow">'+
		'<h2>Tulane Hospital for Children</h2>'+
		'<h4>New Orleans, LA</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/MBNB3DB3X597/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10139 = new google.maps.InfoWindow({
		content: content10139
	});
	var decodedTitle = $("<div/>").html("Tulane Hospital for Children").text();
	var marker10139 = new google.maps.Marker({
		position: latlng10139,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10139, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10139.open(map,marker10139);
		curInfo = info10139;
		curMarker = marker10139;
	});
	
	var latlng10138 = new google.maps.LatLng(39.74630, -104.97348);	
	if("No" == "Yes"){
		var content10138 = '<div class="mapWindow">'+
		'<h2>The Children&#8217;s Hospital Denver</h2>'+
		'<h4>Denver, CO</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/7B3RTDBZEB4Y/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10138 = '<div class="mapWindow">'+
		'<h2>The Children&#8217;s Hospital Denver</h2>'+
		'<h4>Denver, CO</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/7B3RTDBZEB4Y/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10138 = new google.maps.InfoWindow({
		content: content10138
	});
	var decodedTitle = $("<div/>").html("The Children&#8217;s Hospital Denver").text();
	var marker10138 = new google.maps.Marker({
		position: latlng10138,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10138, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10138.open(map,marker10138);
		curInfo = info10138;
		curMarker = marker10138;
	});
	
	var latlng10137 = new google.maps.LatLng(29.70509, -95.40181);	
	if("No" == "Yes"){
		var content10137 = '<div class="mapWindow">'+
		'<h2>Texas Children&#8217;s Hospital</h2>'+
		'<h4>Houston, TX 77030</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/213Z74GX9APJO/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10137 = '<div class="mapWindow">'+
		'<h2>Texas Children&#8217;s Hospital</h2>'+
		'<h4>Houston, TX 77030</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/213Z74GX9APJO/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10137 = new google.maps.InfoWindow({
		content: content10137
	});
	var decodedTitle = $("<div/>").html("Texas Children&#8217;s Hospital").text();
	var marker10137 = new google.maps.Marker({
		position: latlng10137,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10137, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10137.open(map,marker10137);
		curInfo = info10137;
		curMarker = marker10137;
	});
	
	var latlng10136 = new google.maps.LatLng(43.61332, -116.21092);	
	if("No" == "Yes"){
		var content10136 = '<div class="mapWindow">'+
		'<h2>St. Luke&#8217;s Children&#8217;s Hospital</h2>'+
		'<h4>Boise, ID</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/3QW5DWAY0EVDT/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10136 = '<div class="mapWindow">'+
		'<h2>St. Luke&#8217;s Children&#8217;s Hospital</h2>'+
		'<h4>Boise, ID</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/3QW5DWAY0EVDT/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10136 = new google.maps.InfoWindow({
		content: content10136
	});
	var decodedTitle = $("<div/>").html("St. Luke&#8217;s Children&#8217;s Hospital").text();
	var marker10136 = new google.maps.Marker({
		position: latlng10136,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10136, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10136.open(map,marker10136);
		curInfo = info10136;
		curMarker = marker10136;
	});
	
	var latlng10135 = new google.maps.LatLng(38.63737, -90.26589);	
	if("No" == "Yes"){
		var content10135 = '<div class="mapWindow">'+
		'<h2>St. Louis Children&#8217;s Place</h2>'+
		'<h4>St. Louis, MO</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/19X7XHP7YTBSY/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10135 = '<div class="mapWindow">'+
		'<h2>St. Louis Children&#8217;s Place</h2>'+
		'<h4>St. Louis, MO</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/19X7XHP7YTBSY/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10135 = new google.maps.InfoWindow({
		content: content10135
	});
	var decodedTitle = $("<div/>").html("St. Louis Children&#8217;s Place").text();
	var marker10135 = new google.maps.Marker({
		position: latlng10135,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10135, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10135.open(map,marker10135);
		curInfo = info10135;
		curMarker = marker10135;
	});
	
	var latlng10134 = new google.maps.LatLng(29.63980, -82.34334);	
	if("No" == "Yes"){
		var content10134 = '<div class="mapWindow">'+
		'<h2>Shands Children&#8217;s Hospital</h2>'+
		'<h4>Gainesville, FL</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/D0APTC7DLIWK/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10134 = '<div class="mapWindow">'+
		'<h2>Shands Children&#8217;s Hospital</h2>'+
		'<h4>Gainesville, FL</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/D0APTC7DLIWK/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10134 = new google.maps.InfoWindow({
		content: content10134
	});
	var decodedTitle = $("<div/>").html("Shands Children&#8217;s Hospital").text();
	var marker10134 = new google.maps.Marker({
		position: latlng10134,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10134, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10134.open(map,marker10134);
		curInfo = info10134;
		curMarker = marker10134;
	});
	
	var latlng10132 = new google.maps.LatLng(43.53666, -96.74379);	
	if("No" == "Yes"){
		var content10132 = '<div class="mapWindow">'+
		'<h2>Sanford Children&#8217;s Hospital</h2>'+
		'<h4>Sioux Falls, SD</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/1B7575BSDVZTF/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10132 = '<div class="mapWindow">'+
		'<h2>Sanford Children&#8217;s Hospital</h2>'+
		'<h4>Sioux Falls, SD</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/1B7575BSDVZTF/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10132 = new google.maps.InfoWindow({
		content: content10132
	});
	var decodedTitle = $("<div/>").html("Sanford Children&#8217;s Hospital").text();
	var marker10132 = new google.maps.Marker({
		position: latlng10132,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10132, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10132.open(map,marker10132);
		curInfo = info10132;
		curMarker = marker10132;
	});
	
	var latlng10133 = new google.maps.LatLng(47.65716, -122.28194);	
	if("No" == "Yes"){
		var content10133 = '<div class="mapWindow">'+
		'<h2>Seattle Children&#8217;s Hospital</h2>'+
		'<h4>Seattle, WA</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/1YESGR3K97CSS/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10133 = '<div class="mapWindow">'+
		'<h2>Seattle Children&#8217;s Hospital</h2>'+
		'<h4>Seattle, WA</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/1YESGR3K97CSS/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10133 = new google.maps.InfoWindow({
		content: content10133
	});
	var decodedTitle = $("<div/>").html("Seattle Children&#8217;s Hospital").text();
	var marker10133 = new google.maps.Marker({
		position: latlng10133,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10133, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10133.open(map,marker10133);
		curInfo = info10133;
		curMarker = marker10133;
	});
	
	var latlng10131 = new google.maps.LatLng(47.64836	, -117.41278);	
	if("No" == "Yes"){
		var content10131 = '<div class="mapWindow">'+
		'<h2>Sacred Heart Childrens</h2>'+
		'<h4>Spokane, WA</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/24ABUC9MH3EQJ/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10131 = '<div class="mapWindow">'+
		'<h2>Sacred Heart Childrens</h2>'+
		'<h4>Spokane, WA</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/24ABUC9MH3EQJ/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10131 = new google.maps.InfoWindow({
		content: content10131
	});
	var decodedTitle = $("<div/>").html("Sacred Heart Childrens").text();
	var marker10131 = new google.maps.Marker({
		position: latlng10131,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10131, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10131.open(map,marker10131);
		curInfo = info10131;
		curMarker = marker10131;
	});
	
	var latlng10130 = new google.maps.LatLng(39.77744, -86.17872);	
	if("No" == "Yes"){
		var content10130 = '<div class="mapWindow">'+
		'<h2>Riley Hospital for Children</h2>'+
		'<h4>Indianapolis, IN</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/3CEJICKWQ4WOQ/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10130 = '<div class="mapWindow">'+
		'<h2>Riley Hospital for Children</h2>'+
		'<h4>Indianapolis, IN</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/3CEJICKWQ4WOQ/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10130 = new google.maps.InfoWindow({
		content: content10130
	});
	var decodedTitle = $("<div/>").html("Riley Hospital for Children").text();
	var marker10130 = new google.maps.Marker({
		position: latlng10130,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10130, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10130.open(map,marker10130);
		curInfo = info10130;
		curMarker = marker10130;
	});
	
	var latlng10129 = new google.maps.LatLng(32.81025, -117.13236);	
	if("No" == "Yes"){
		var content10129 = '<div class="mapWindow">'+
		'<h2>Rady Children&#8217;s</h2>'+
		'<h4>San Diego, CA</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/115X46O0K1YFP/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10129 = '<div class="mapWindow">'+
		'<h2>Rady Children&#8217;s</h2>'+
		'<h4>San Diego, CA</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/115X46O0K1YFP/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10129 = new google.maps.InfoWindow({
		content: content10129
	});
	var decodedTitle = $("<div/>").html("Rady Children&#8217;s").text();
	var marker10129 = new google.maps.Marker({
		position: latlng10129,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10129, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10129.open(map,marker10129);
		curInfo = info10129;
		curMarker = marker10129;
	});
	
	var latlng10127 = new google.maps.LatLng(40.77070, -111.83835);	
	if("No" == "Yes"){
		var content10127 = '<div class="mapWindow">'+
		'<h2>Primary Children&#8217;s Center Foundation</h2>'+
		'<h4>Salt Lake City, UT</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/3CT79QP73UDCI/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10127 = '<div class="mapWindow">'+
		'<h2>Primary Children&#8217;s Center Foundation</h2>'+
		'<h4>Salt Lake City, UT</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/3CT79QP73UDCI/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10127 = new google.maps.InfoWindow({
		content: content10127
	});
	var decodedTitle = $("<div/>").html("Primary Children&#8217;s Center Foundation").text();
	var marker10127 = new google.maps.Marker({
		position: latlng10127,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10127, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10127.open(map,marker10127);
		curInfo = info10127;
		curMarker = marker10127;
	});
	
	var latlng10128 = new google.maps.LatLng(61.18975, -149.81743);	
	if("No" == "Yes"){
		var content10128 = '<div class="mapWindow">'+
		'<h2>The Children’s Hospital at Providence</h2>'+
		'<h4>Anchorage, AK</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/127WEEYE1HLYA/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10128 = '<div class="mapWindow">'+
		'<h2>The Children’s Hospital at Providence</h2>'+
		'<h4>Anchorage, AK</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/127WEEYE1HLYA/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10128 = new google.maps.InfoWindow({
		content: content10128
	});
	var decodedTitle = $("<div/>").html("The Children’s Hospital at Providence").text();
	var marker10128 = new google.maps.Marker({
		position: latlng10128,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10128, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10128.open(map,marker10128);
		curInfo = info10128;
		curMarker = marker10128;
	});
	
	var latlng10126 = new google.maps.LatLng(35.90431, -79.05001);	
	if("No" == "Yes"){
		var content10126 = '<div class="mapWindow">'+
		'<h2>North Carolina Childrens</h2>'+
		'<h4>Chapel Hill, NC</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/3HOX5CONQ76PP/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10126 = '<div class="mapWindow">'+
		'<h2>North Carolina Childrens</h2>'+
		'<h4>Chapel Hill, NC</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/3HOX5CONQ76PP/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10126 = new google.maps.InfoWindow({
		content: content10126
	});
	var decodedTitle = $("<div/>").html("North Carolina Childrens").text();
	var marker10126 = new google.maps.Marker({
		position: latlng10126,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10126, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10126.open(map,marker10126);
		curInfo = info10126;
		curMarker = marker10126;
	});
	
	var latlng10124 = new google.maps.LatLng(42.11111, -96.11111);	
	if("No" == "Yes"){
		var content10124 = '<div class="mapWindow">'+
		'<h2>Nebraska Medical Center</h2>'+
		'<h4>Omaha, NE</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/2SPD7OHXF276F/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10124 = '<div class="mapWindow">'+
		'<h2>Nebraska Medical Center</h2>'+
		'<h4>Omaha, NE</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/2SPD7OHXF276F/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10124 = new google.maps.InfoWindow({
		content: content10124
	});
	var decodedTitle = $("<div/>").html("Nebraska Medical Center").text();
	var marker10124 = new google.maps.Marker({
		position: latlng10124,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10124, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10124.open(map,marker10124);
		curInfo = info10124;
		curMarker = marker10124;
	});
	
	var latlng10125 = new google.maps.LatLng(35.08974, -106.63628);	
	if("No" == "Yes"){
		var content10125 = '<div class="mapWindow">'+
		'<h2>New Mexico Children&#8217;s Hospital</h2>'+
		'<h4>Albuquerque, NM</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/21EIN5ZGOFY3U/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10125 = '<div class="mapWindow">'+
		'<h2>New Mexico Children&#8217;s Hospital</h2>'+
		'<h4>Albuquerque, NM</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/21EIN5ZGOFY3U/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10125 = new google.maps.InfoWindow({
		content: content10125
	});
	var decodedTitle = $("<div/>").html("New Mexico Children&#8217;s Hospital").text();
	var marker10125 = new google.maps.Marker({
		position: latlng10125,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10125, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10125.open(map,marker10125);
		curInfo = info10125;
		curMarker = marker10125;
	});
	
	var latlng10123 = new google.maps.LatLng(32.78528, -79.94654);	
	if("No" == "Yes"){
		var content10123 = '<div class="mapWindow">'+
		'<h2>MUSC - South Carolina</h2>'+
		'<h4>Charleston, SC</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/13PN8FVWZMHQT/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10123 = '<div class="mapWindow">'+
		'<h2>MUSC - South Carolina</h2>'+
		'<h4>Charleston, SC</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/13PN8FVWZMHQT/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10123 = new google.maps.InfoWindow({
		content: content10123
	});
	var decodedTitle = $("<div/>").html("MUSC - South Carolina").text();
	var marker10123 = new google.maps.Marker({
		position: latlng10123,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10123, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10123.open(map,marker10123);
		curInfo = info10123;
		curMarker = marker10123;
	});
	
	var latlng10122 = new google.maps.LatLng(40.88023, -73.87864);	
	if("No" == "Yes"){
		var content10122 = '<div class="mapWindow">'+
		'<h2>Montefiore Children&#8217;s Hospital</h2>'+
		'<h4>Bronx, NY</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/21PLD7KC8ZLN9/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10122 = '<div class="mapWindow">'+
		'<h2>Montefiore Children&#8217;s Hospital</h2>'+
		'<h4>Bronx, NY</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/21PLD7KC8ZLN9/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10122 = new google.maps.InfoWindow({
		content: content10122
	});
	var decodedTitle = $("<div/>").html("Montefiore Children&#8217;s Hospital").text();
	var marker10122 = new google.maps.Marker({
		position: latlng10122,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10122, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10122.open(map,marker10122);
		curInfo = info10122;
		curMarker = marker10122;
	});
	
	var latlng10120 = new google.maps.LatLng(29.5079, -98.57224);	
	if("No" == "Yes"){
		var content10120 = '<div class="mapWindow">'+
		'<h2>Methodist Hospital of S. Texas</h2>'+
		'<h4>San Antonio, TX</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/2W2HJY4O39MN0/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10120 = '<div class="mapWindow">'+
		'<h2>Methodist Hospital of S. Texas</h2>'+
		'<h4>San Antonio, TX</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/2W2HJY4O39MN0/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10120 = new google.maps.InfoWindow({
		content: content10120
	});
	var decodedTitle = $("<div/>").html("Methodist Hospital of S. Texas").text();
	var marker10120 = new google.maps.Marker({
		position: latlng10120,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10120, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10120.open(map,marker10120);
		curInfo = info10120;
		curMarker = marker10120;
	});
	
	var latlng10119 = new google.maps.LatLng(38.83893, -104.79974);	
	if("No" == "Yes"){
		var content10119 = '<div class="mapWindow">'+
		'<h2>Memorial Hospital</h2>'+
		'<h4>Colorado Springs, CO</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/3ECR803SVPP6B/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10119 = '<div class="mapWindow">'+
		'<h2>Memorial Hospital</h2>'+
		'<h4>Colorado Springs, CO</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/3ECR803SVPP6B/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10119 = new google.maps.InfoWindow({
		content: content10119
	});
	var decodedTitle = $("<div/>").html("Memorial Hospital").text();
	var marker10119 = new google.maps.Marker({
		position: latlng10119,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10119, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10119.open(map,marker10119);
		curInfo = info10119;
		curMarker = marker10119;
	});
	
	var latlng10118 = new google.maps.LatLng(44.65282, -121.66945);	
	if("No" == "Yes"){
		var content10118 = '<div class="mapWindow">'+
		'<h2>Randall Children&#8217;s Hospital (formerly Legacy Emanuel)</h2>'+
		'<h4>Portland, OR</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/1MC27ZEPJCEPH/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10118 = '<div class="mapWindow">'+
		'<h2>Randall Children&#8217;s Hospital (formerly Legacy Emanuel)</h2>'+
		'<h4>Portland, OR</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/1MC27ZEPJCEPH/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10118 = new google.maps.InfoWindow({
		content: content10118
	});
	var decodedTitle = $("<div/>").html("Randall Children&#8217;s Hospital (formerly Legacy Emanuel)").text();
	var marker10118 = new google.maps.Marker({
		position: latlng10118,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10118, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10118.open(map,marker10118);
		curInfo = info10118;
		curMarker = marker10118;
	});
	
	var latlng10117 = new google.maps.LatLng(35.14419, -90.03278);	
	if("No" == "Yes"){
		var content10117 = '<div class="mapWindow">'+
		'<h2>Le Bonheur Children&#8217;s Hospital</h2>'+
		'<h4>Memphis, TN</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/1HYDQ7C523D4Q/ref=cm_sw_su_w" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10117 = '<div class="mapWindow">'+
		'<h2>Le Bonheur Children&#8217;s Hospital</h2>'+
		'<h4>Memphis, TN</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/1HYDQ7C523D4Q/ref=cm_sw_su_w" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10117 = new google.maps.InfoWindow({
		content: content10117
	});
	var decodedTitle = $("<div/>").html("Le Bonheur Children&#8217;s Hospital").text();
	var marker10117 = new google.maps.Marker({
		position: latlng10117,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10117, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10117.open(map,marker10117);
		curInfo = info10117;
		curMarker = marker10117;
	});
	
	var latlng10116 = new google.maps.LatLng(38.24801, -85.74899);	
	if("No" == "Yes"){
		var content10116 = '<div class="mapWindow">'+
		'<h2>Kosair Children&#8217;s Hospital</h2>'+
		'<h4>Louisville, KY</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/1DPCDCXK3LJVB/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10116 = '<div class="mapWindow">'+
		'<h2>Kosair Children&#8217;s Hospital</h2>'+
		'<h4>Louisville, KY</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/1DPCDCXK3LJVB/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10116 = new google.maps.InfoWindow({
		content: content10116
	});
	var decodedTitle = $("<div/>").html("Kosair Children&#8217;s Hospital").text();
	var marker10116 = new google.maps.Marker({
		position: latlng10116,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10116, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10116.open(map,marker10116);
		curInfo = info10116;
		curMarker = marker10116;
	});
	
	var latlng10115 = new google.maps.LatLng(21.29992, -157.83452);	
	if("No" == "Yes"){
		var content10115 = '<div class="mapWindow">'+
		'<h2>Kapi&#8217;olani Children&#8217;s Hospital</h2>'+
		'<h4>Honolulu, Hawaii</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/69G0DH830YFB/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10115 = '<div class="mapWindow">'+
		'<h2>Kapi&#8217;olani Children&#8217;s Hospital</h2>'+
		'<h4>Honolulu, Hawaii</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/69G0DH830YFB/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10115 = new google.maps.InfoWindow({
		content: content10115
	});
	var decodedTitle = $("<div/>").html("Kapi&#8217;olani Children&#8217;s Hospital").text();
	var marker10115 = new google.maps.Marker({
		position: latlng10115,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10115, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10115.open(map,marker10115);
		curInfo = info10115;
		curMarker = marker10115;
	});
	
	var latlng10114 = new google.maps.LatLng(39.29751, -76.59289);	
	if("No" == "Yes"){
		var content10114 = '<div class="mapWindow">'+
		'<h2>Johns Hopkins Children&#8217;s Center</h2>'+
		'<h4>Baltimore, Maryland</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/JD8CL8MODD75/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10114 = '<div class="mapWindow">'+
		'<h2>Johns Hopkins Children&#8217;s Center</h2>'+
		'<h4>Baltimore, Maryland</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/JD8CL8MODD75/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10114 = new google.maps.InfoWindow({
		content: content10114
	});
	var decodedTitle = $("<div/>").html("Johns Hopkins Children&#8217;s Center").text();
	var marker10114 = new google.maps.Marker({
		position: latlng10114,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10114, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10114.open(map,marker10114);
		curInfo = info10114;
		curMarker = marker10114;
	});
	
	var latlng10113 = new google.maps.LatLng(35.21202, -80.82424);	
	if("No" == "Yes"){
		var content10113 = '<div class="mapWindow">'+
		'<h2>Hemby Children&#8217;s Hospital</h2>'+
		'<h4>Charlotte, NC</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/1DRZWKIXB1EOU/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10113 = '<div class="mapWindow">'+
		'<h2>Hemby Children&#8217;s Hospital</h2>'+
		'<h4>Charlotte, NC</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/1DRZWKIXB1EOU/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10113 = new google.maps.InfoWindow({
		content: content10113
	});
	var decodedTitle = $("<div/>").html("Hemby Children&#8217;s Hospital").text();
	var marker10113 = new google.maps.Marker({
		position: latlng10113,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10113, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10113.open(map,marker10113);
		curInfo = info10113;
		curMarker = marker10113;
	});
	
	var latlng10112 = new google.maps.LatLng(44.47966, -73.19412);	
	if("No" == "Yes"){
		var content10112 = '<div class="mapWindow">'+
		'<h2>Fletcher Health Care</h2>'+
		'<h4>Burlington, VT</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/2NXS5BGRES0OA/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10112 = '<div class="mapWindow">'+
		'<h2>Fletcher Health Care</h2>'+
		'<h4>Burlington, VT</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/2NXS5BGRES0OA/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10112 = new google.maps.InfoWindow({
		content: content10112
	});
	var decodedTitle = $("<div/>").html("Fletcher Health Care").text();
	var marker10112 = new google.maps.Marker({
		position: latlng10112,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10112, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10112.open(map,marker10112);
		curInfo = info10112;
		curMarker = marker10112;
	});
	
	var latlng10111 = new google.maps.LatLng(45.49882, -122.68566);	
	if("No" == "Yes"){
		var content10111 = '<div class="mapWindow">'+
		'<h2>Doernbecher Children&#8217;s Hospital</h2>'+
		'<h4>Portland, Oregon</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/2IJW3XVXUCS8Z/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10111 = '<div class="mapWindow">'+
		'<h2>Doernbecher Children&#8217;s Hospital</h2>'+
		'<h4>Portland, Oregon</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/2IJW3XVXUCS8Z/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10111 = new google.maps.InfoWindow({
		content: content10111
	});
	var decodedTitle = $("<div/>").html("Doernbecher Children&#8217;s Hospital").text();
	var marker10111 = new google.maps.Marker({
		position: latlng10111,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10111, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10111.open(map,marker10111);
		curInfo = info10111;
		curMarker = marker10111;
	});
	
	var latlng10110 = new google.maps.LatLng(41.75342, -72.68283);	
	if("No" == "Yes"){
		var content10110 = '<div class="mapWindow">'+
		'<h2>Connecticut Childrens</h2>'+
		'<h4>Hartford, CT</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/1QSPY363E71SE/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10110 = '<div class="mapWindow">'+
		'<h2>Connecticut Childrens</h2>'+
		'<h4>Hartford, CT</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/1QSPY363E71SE/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10110 = new google.maps.InfoWindow({
		content: content10110
	});
	var decodedTitle = $("<div/>").html("Connecticut Childrens").text();
	var marker10110 = new google.maps.Marker({
		position: latlng10110,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10110, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10110.open(map,marker10110);
		curInfo = info10110;
		curMarker = marker10110;
	});
	
	var latlng10109 = new google.maps.LatLng(41.50266, -81.62693);	
	if("No" == "Yes"){
		var content10109 = '<div class="mapWindow">'+
		'<h2>Cleveland Children&#8217;s Clinic</h2>'+
		'<h4>Cleveland, OH</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/34X3WTIW4OEYO/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10109 = '<div class="mapWindow">'+
		'<h2>Cleveland Children&#8217;s Clinic</h2>'+
		'<h4>Cleveland, OH</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/34X3WTIW4OEYO/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10109 = new google.maps.InfoWindow({
		content: content10109
	});
	var decodedTitle = $("<div/>").html("Cleveland Children&#8217;s Clinic").text();
	var marker10109 = new google.maps.Marker({
		position: latlng10109,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10109, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10109.open(map,marker10109);
		curInfo = info10109;
		curMarker = marker10109;
	});
	
	var latlng10108 = new google.maps.LatLng(39.14521, -84.51698);	
	if("No" == "Yes"){
		var content10108 = '<div class="mapWindow">'+
		'<h2>Cincinnati Children&#8217;s Hospital</h2>'+
		'<h4>Cincinnati, OH</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/3O070KITTJS5P/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10108 = '<div class="mapWindow">'+
		'<h2>Cincinnati Children&#8217;s Hospital</h2>'+
		'<h4>Cincinnati, OH</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/3O070KITTJS5P/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10108 = new google.maps.InfoWindow({
		content: content10108
	});
	var decodedTitle = $("<div/>").html("Cincinnati Children&#8217;s Hospital").text();
	var marker10108 = new google.maps.Marker({
		position: latlng10108,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10108, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10108.open(map,marker10108);
		curInfo = info10108;
		curMarker = marker10108;
	});
	
	var latlng10107 = new google.maps.LatLng(26.10198, -80.14227);	
	if("No" == "Yes"){
		var content10107 = '<div class="mapWindow">'+
		'<h2>Chris Evert Children&#8217;s Hospital</h2>'+
		'<h4>Fort Lauderdale, FL</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/MLEFSUO7AJAS/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10107 = '<div class="mapWindow">'+
		'<h2>Chris Evert Children&#8217;s Hospital</h2>'+
		'<h4>Fort Lauderdale, FL</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/MLEFSUO7AJAS/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10107 = new google.maps.InfoWindow({
		content: content10107
	});
	var decodedTitle = $("<div/>").html("Chris Evert Children&#8217;s Hospital").text();
	var marker10107 = new google.maps.Marker({
		position: latlng10107,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10107, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10107.open(map,marker10107);
		curInfo = info10107;
		curMarker = marker10107;
	});
	
	var latlng10106 = new google.maps.LatLng(40.66980, -74.35420);	
	if("No" == "Yes"){
		var content10106 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Specialized Hospital</h2>'+
		'<h4>Mountainside, NJ</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/ZSAK52ABFLSB/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10106 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Specialized Hospital</h2>'+
		'<h4>Mountainside, NJ</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/ZSAK52ABFLSB/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10106 = new google.maps.InfoWindow({
		content: content10106
	});
	var decodedTitle = $("<div/>").html("Children&#8217;s Specialized Hospital").text();
	var marker10106 = new google.maps.Marker({
		position: latlng10106,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10106, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10106.open(map,marker10106);
		curInfo = info10106;
		curMarker = marker10106;
	});
	
	var latlng10105 = new google.maps.LatLng(32.81305, -96.83092);	
	if("No" == "Yes"){
		var content10105 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Medical Center Dallas</h2>'+
		'<h4>Dallas, Texas</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/wishlist/1XZURBG91TNMP/?_encoding=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10105 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Medical Center Dallas</h2>'+
		'<h4>Dallas, Texas</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/wishlist/1XZURBG91TNMP/?_encoding=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10105 = new google.maps.InfoWindow({
		content: content10105
	});
	var decodedTitle = $("<div/>").html("Children&#8217;s Medical Center Dallas").text();
	var marker10105 = new google.maps.Marker({
		position: latlng10105,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10105, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10105.open(map,marker10105);
		curInfo = info10105;
		curMarker = marker10105;
	});
	
	var latlng10104 = new google.maps.LatLng(29.91760, -90.12703);	
	if("No" == "Yes"){
		var content10104 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Hospital New Orleans</h2>'+
		'<h4>New Orleans, LA</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/1A6U99V3PVN0Q/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10104 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Hospital New Orleans</h2>'+
		'<h4>New Orleans, LA</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/1A6U99V3PVN0Q/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10104 = new google.maps.InfoWindow({
		content: content10104
	});
	var decodedTitle = $("<div/>").html("Children&#8217;s Hospital New Orleans").text();
	var marker10104 = new google.maps.Marker({
		position: latlng10104,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10104, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10104.open(map,marker10104);
		curInfo = info10104;
		curMarker = marker10104;
	});
	
	var latlng10103 = new google.maps.LatLng(40.71011, -74.21368);	
	if("No" == "Yes"){
		var content10103 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Hospital New Jersey</h2>'+
		'<h4>Newark, NJ</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/6V32HAK799DG/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10103 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Hospital New Jersey</h2>'+
		'<h4>Newark, NJ</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/6V32HAK799DG/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10103 = new google.maps.InfoWindow({
		content: content10103
	});
	var decodedTitle = $("<div/>").html("Children&#8217;s Hospital New Jersey").text();
	var marker10103 = new google.maps.Marker({
		position: latlng10103,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10103, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10103.open(map,marker10103);
		curInfo = info10103;
		curMarker = marker10103;
	});
	
	var latlng10102 = new google.maps.LatLng(43.04569, -88.03785);	
	if("No" == "Yes"){
		var content10102 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Hospital Milwaukee</h2>'+
		'<h4>Wauwatosa, WI</h4>'+
		'<a class="btn btnSmlDonatePayPal" href="http://www.amazon.com/gp/registry/wishlist/3EXOKOGIC7ZCC/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="Donate via PayPal">Donate via PayPal</a>'+
		'</div>';
	}else{
		var content10102 = '<div class="mapWindow">'+
		'<h2>Children&#8217;s Hospital Milwaukee</h2>'+
		'<h4>Wauwatosa, WI</h4>'+
		'<a class="btn btnSmlViewWishlist" href="http://www.amazon.com/gp/registry/wishlist/3EXOKOGIC7ZCC/?ie=UTF8&tag=childsplaycha-20&linkCode=ur2&camp=1789&creative=9325" title="View Amazon Wishlist">View Amazon Wishlist</a>'+
		'</div>';		
	}
	var info10102 = new google.maps.InfoWindow({
		content: content10102
	});
	var decodedTitle = $("<div/>").html("Children&#8217;s Hospital Milwaukee").text();
	var marker10102 = new google.maps.Marker({
		position: latlng10102,
		title: decodedTitle,
		map: map,
		shadow: shadow,
		icon: image
	});
	google.maps.event.addListener(marker10102, 'click', function() {
		if(curInfo != ""){curInfo.close(map,curMarker);}
		info10102.open(map,marker10102);
		curInfo = info10102;
		curMarker = marker10102;
	});
	

	// add markers to map
	marker.setMap(map);
}