/* Future Valley Lucerne - created by Nexanet GmbH */

$(document).ready(function() {
  $("#menu > li > a").mouseover(function(){
    $("#menu ul").hide();
    $(this).parent().find("ul").show();
  });

  $('.article, .article2').each(function() {
    if ($(this).find('a').length==1) $(this).css('cursor','pointer').click(function(){ location.href=$(this).find('a:first').attr('href')});
  });
});

