var map_text = "<h2>Nákupné centrum Hron</h2>Dudvážska 5<br />Bratislava&nbsp;-&nbsp;Podunajské Biskupice";
$(function() {  
	//$("#border-bottom, #center").ifixpng();
  $('a[@rel*=facebox]').facebox();
  //$('flashBg').height($('page-wrap').height());
  //$('#menu > ul li:first').addClass('firstChild');
  
  $("#menu ul li").hover(
    function(){
      $(this).addClass("hover");
      $(this).children().filter("ul").css({display:"block"});
    },
    function(){
      $(this).children().filter("ul").css({display:"none"});
      $(this).removeClass("hover");
    });
});