 $(document).ready(function(){
$("#main").fadeIn("slow");
$("#footer").fadeIn("slow");

$("#kasten_rechts_unten").click(function () {
      if ($("#kasten_login").is(":hidden")) {
         $("#kasten_login").show("1000");
      } else {
        $("#kasten_login").hide(1000);
      }
});

$('#vorschau').lightBox({
overlayBgColor: '#fff',
 overlayOpacity: 0.6,
 txtImage: 'Bild',
 txtOf: 'von'

});


jQuery(".h3").click().toggle(function() {
jQuery(this).addClass('focus');
jQuery(this).next("p").slideDown('slow').click(function() {jQuery(this).slideUp('slow',function(){jQuery(this).prev("div").removeClass('focus');});});
}, function() {
jQuery(this).next("p").slideUp('slow',function(){jQuery(this).prev("div").removeClass('focus');});
});




 });