$(document).ready( function() {
      
	  $(".point").hover(
		function () {
		  $(this).addClass("act");
        }, 
        function () {
          $(this).removeClass("act");
        }
      );  

	  $(".point").click (
		function () {
		  var boxShow = "#" + $(this).attr("id") + "Info";
		  $(".whiteBox").hide(); /* ha van nyitva masik info box, akkor bezarjuk */
		  $(boxShow).show(); /* es megjelenitjuk clickre az aktualisat */
        }
      );  

	  $(".close").click (
		function () {
		  var boxHide = "#" + $(this).parent().parent().attr("id");
		  $(boxHide).hide();
        }
      );  

	  /* vonat video eltunteto */
	  setTimeout(function() {
	    $("#trainMov").hide();
	  }, 16000);

	  $("#trainMov").click(function() {
        $("#trainMov").hide();
	  });

});

function hide(id) {
  document.getElementById(id).style.display = 'none';
}
