/*
function loadMap() {
	if (GBrowserIsCompatible() && document.getElementById("map") != null) {
		var map = new GMap2(document.getElementById("map"));
		map.setCenter(new GLatLng(52.0331, 23.4742), 12);
		map.addOverlay(new GMarker(new GLatLng(52.0331, 23.4742)));
		map.addControl(new GLargeMapControl());

	}
}

jQuery(document).ready(function() {
	loadMap();
})
*/

jQuery(document).ready(function() {
	$('#menu ul.depth1 > li:has(ul)').addClass('full');
});

