At the end of the 14th century Gothic chapel of All Saints was erected in the middle of the cemetery and under it a chapel destined for the deposition of bones from abolished graves, a task which was begun by a half blind Cistercian monk after the year 1511.The present arrangement of the bones dates from 1870 and is the work of a Czech wood-carver, Master Rint (you can see his name put together from bones inside the Ossuary as well).
Sedlec Ossuary contains the remains of about 40 000 people. The largest collections of bones are arranged in the form of bells in the four corners of the chapel.The most interesting creations by Master Rint are the chandelier in the centre of the nave, containing all the bones of the human body, two monstrances beside the main altar and the coat-of arms of the Schwarzenberg noble family on the left-hand side of the chapel.
This work was created to remind us the transience of human life and the undeniable fact of death.
//
function load() {
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map"));
map.addControl(new GSmallMapControl());
map.addControl(new GMapTypeControl());
map.setCenter(new GLatLng(50.032445247495104,15.0677490234375), 9);
map.setMapType(G_HYBRID_MAP);
// Creates a marker at the given point with the given number label
function createMarker(point, number, text) {
var marker = new GMarker(point);
GEvent.addListener(marker, "mouseover", function() {
marker.openInfoWindowHtml("Excursion #" + number + "
" + text + "" );
});
return marker;
}
// Add 10 markers to the map at random locations
var bounds = map.getBounds();
var southWest = bounds.getSouthWest();
var northEast = bounds.getNorthEast();
var lngSpan = northEast.lng() - southWest.lng();
var latSpan = northEast.lat() - southWest.lat();
var point = new GLatLng(50.10296448723353,14.381103515625);
map.addOverlay(createMarker(point, 1, "Prague - the city of a hundred spires. It has wonderful opera,
sightseeing, restaurants & nightlife make it the most exciting
city in Central Europe. More info about Prague here.
"));
var point = new GLatLng(49.950000,15.270000);
map.addOverlay(createMarker(point, 2, "Discover the history of the town that used to
stand just behind the royal City of Prague.
More info about Kutna Hora here.
"));
}
}
//]]>