var months=["jan","febr","márc","ápr","máj","jún","júl","aug","szept","okt","nov","dec"];

$(function(){
  $(".menu").fadeTo("slow",0.60).hover(function(){
    $(this).fadeTo("fast",1);
  },function(){
    $(this).fadeTo("fast",0.8);
  });

  $("#topEstates").jcarousel({
    scroll:1,
    animation:2000,
    auto:0.001,
    wrap:"last"
  });
});

function reloadNoHash(){
  var x=window.location.href;
  window.location.href=x.substr(0,x.indexOf('#'));
}


