function addNewPoint (map, point, title, icon_path, description, iconWidth, iconHeight) {
	var icon = new google.maps.Icon(G_DEFAULT_ICON);
	icon.image = icon_path;

	var iWidth = 18;
	var iHeight = 18;

	if ( iconWidth && iconHeight ) {
		iWidth = iconWidth;
		iHeight = iconHeight;
	}

	icon.iconSize = new google.maps.Size(iWidth, iHeight);
	icon.iconAnchor = new google.maps.Point(iWidth/2, iHeight/2);
	icon.shadow = '';

	var marker = new google.maps.Marker(point, { icon: icon, title: title } )
	marker.base_width = icon.iconSize.width;
	marker.base_height = icon.iconSize.height;

	map.addOverlay(marker);

	if ( description != "" ) {
		google.maps.Event.addListener(marker, "click", function () { marker.openInfoWindowHtml(description) });
	}
	return marker;
}

function addSights(map) {
	addNewPoint(map, new google.maps.LatLng(50.086776271555, 14.4115734100341), 'Charles Bridge', '/images/icons/karluv_most.gif', '', 82, 48);
	addNewPoint(map, new google.maps.LatLng(50.0873269810942, 14.4282245635986), 'Powder Gate', '/images/icons/prasna_brana.gif', '', 12, 25);
	addNewPoint(map, new google.maps.LatLng(50.081131135188514, 14.413869380950927), 'National Theater', '/images/icons/narodni_divadlo.gif', '', 28, 24);
	addNewPoint(map, new google.maps.LatLng(50.079616473265695, 14.430627822875976), 'National Muzeum', '/images/icons/muzeum.gif', '', 27, 18);
	addNewPoint(map, new google.maps.LatLng(50.08757479827252, 14.421143531799316), 'Tyn Church', '/images/icons/tyn.gif', '', 12, 19);
	addNewPoint(map, new google.maps.LatLng(50.092888791621164, 14.423675537109375), 'Anezsky Klaster', '/images/icons/anezsky_klaster.gif', '', 22, 21);
	addNewPoint(map, new google.maps.LatLng(50.093301771608, 14.40530776977539), 'Kralovsky Letohradek', '/images/icons/letohradek.gif', '', 27, 22);
	addNewPoint(map, new google.maps.LatLng(50.07570567029715, 14.43727970123291), 'Namesti Miru', '/images/icons/namesti_miru.gif', '', 14, 32);
	addNewPoint(map, new google.maps.LatLng(50.08718930433045, 14.42007064819336), 'Astronomical clock', '/images/icons/novomestska_radnice.gif', '', 17, 24);
	addNewPoint(map, new google.maps.LatLng(50.08640453922492, 14.402861595153808), 'Pany Marie Vitezne', '/images/icons/p_m_vitezne.gif', '', 22, 30);
	addNewPoint(map, new google.maps.LatLng(50.082976204147414, 14.42378282546997), 'Pany Marie Snezne', '/images/icons/pany_marie_snezne.gif', '', 15, 20);
	addNewPoint(map, new google.maps.LatLng(50.08816680078936, 14.40356969833374), 'Sv. Mikulas', '/images/icons/sv_mikulas.gif', '', 17, 28);
	addNewPoint(map, new google.maps.LatLng(50.09074123831468, 14.400243759155273), 'Sv. Vit', '/images/icons/sv_vit.gif', '', 34, 35);
	addNewPoint(map, new google.maps.LatLng(50.09030070266364, 14.41805362701416), 'Old New Synagog', '/images/icons/synagoga.gif', '', 15, 24);
	addNewPoint(map, new google.maps.LatLng(50.0844081490198, 14.4268083572388), 'New Town', '/images/icons/new_town.gif', '', 71, 10);
	addNewPoint(map, new google.maps.LatLng(50.0889790714124, 14.406852722168), 'Lesser Town', '/images/icons/lesser_town.gif', '', 90, 10);
	addNewPoint(map, new google.maps.LatLng(50.0884834502967, 14.4196844100952), 'Old Town', '/images/icons/old_town.gif', '', 68, 10);
}
