$(document).ready(function() {
  $("a.lightbox").nyroModal({galleryCounts:null});
  multiInit();
});

function multiInit() {
  $("#multi form:first input").focus(function(){
    if($(this).val()=='Suchbegriff ...') { $(this).val(''); }
  }).blur(function(){
    if($(this).val()=='') { $(this).val('Suchbegriff ...'); }
  });
  $("#multi form h2").click(function(){
    if($(this).next("p").is(":hidden")) {
      $("#multi form h2.opened").removeClass("opened").next("p").slideUp(250);
      $(this).addClass("opened").next("p").slideDown(250);
    } else {
      $(this).removeClass("opened").next("p").slideUp(250);
    }
  });
}

