$(document).ready(function(){

  $('ul, ol').prev('p').css('margin-bottom', '0');

  $('#nav a').click(function(){
    window.location = $(this).attr('href');
    return false;
  });

  $('#nav > ul > li > ul').hide();
  $('#nav > ul > li').click(function(){
    $(this).children('ul').slideToggle();
    $(this).toggleClass('arrow_open');
    $(this).toggleClass('arrow_close');
  });
  
  //$('#nav li.active').addClass('arrow_open');
  $('#nav li.active ul').show();

  //$('.image a, .gallery a, #anfahrt').colorbox({'initialWidth':800,'initialHeight':400});
  
  $('ul.gallery').each(function(){
    var width = $(this).width();
    width = width*0.5;
    $(this).css('margin-left', '-' + width + 'px');
  }
  
  );
  
  $('#inhalt > .block').each(function(){
    if($(this).children('.image').size()>0){
      var head = $(this).children('h1:first').html();
      $(this).children('h1').remove();
      $(this).prepend('<h1>' + head + '</h1>');
    }  
  });
  
  /*$('#flash').flash({
    src: '/template/spruch_ticker/spruch_ticker.swf',
    width: 760,
    height: 80,
    wmode: 'transparent'
  });*/
  
  // Startseite
  //$('#slideshow').jqFancyTransitions({width:738, height:210, navigation: true});
  $('#slideshow').anythingSlider({
    resizeContents: false,
    buildArrows: false
  });
  $('#cols .block:last-child').css('margin', '0');
  $('#cols h1').next('p').css('height', '100px');
  $('#cols p:has(img)').addClass('border');
  
});
