
$(document).ready(function() {
  $('#navigation .menu_1 li').each( function(index) {
    if ($(this).find('a').attr('href') == 'campingplaetze-auf-fehmarn.html') {
      $(this).find('ul').shuffle();
      $(this).find('ul').prepend('<li><hr></li>').prepend('<li onmouseout="hide(this)" onmouseover="show(this)" class=""><a onfocus="blurLink(this);" href="campingplaetze-auf-fehmarn.html"> Zur &Uuml;bersichtskarte</a></li>');
    }
  });
  
  $('#rssNews a').each(function () {
    if (true || document.location.href.match(/debug/)) {
        $(this).attr('href', '/news.php?url='+escape($(this).attr('href')));
    }
  });
});

