function googlemaps() {
	var myLatlng = new google.maps.LatLng(47.500919,19.061975);
	var center = new google.maps.LatLng(47.500619,19.060975);
    var myOptions = {
		zoom: 15,
		center: center,
		mapTypeId: google.maps.MapTypeId.ROADMAP
    }
    var map = new google.maps.Map(document.getElementById("map"), myOptions);
	var marker = new google.maps.Marker({
		position: myLatlng,
		map: map,
		title:"Hotel Ambra ****"
	});
}

function changePic() {
	id = (a % 3) + 1;
	pic = pic % maxpic;
	document.getElementById("pic" + id).src = "http://www.hotelambra.hu/images/pic" + pic + ".jpg";
	a++;
	pic++;
	setTimeout("changePic()",3000);
}

window.onload = function() {
	a = 0;
	pic = 3;
	maxpic = 13;
	setTimeout("changePic()",3000);
}
