$(function(){

  $('#tinformations li').dialog({
      buttons: { "Ok": function() { $(this).dialog("close"); } }
    , modal:  true
    , closeText : 'Schließen'
    , height: 200
    , width: 350
    , position: ['center',200]
    , hide: 'fade'
  });

  $('a.lightbox').lightBox({
      imageLoading  : '/images/lightbox/lightbox-ico-loading.gif'
    , imageBtnClose : '/images/lightbox/lightbox-btn-close.gif'
    , imageBtnPrev  : '/images/lightbox/lightbox-btn-prev.gif'
    , imageBtnNext  : '/images/lightbox/lightbox-btn-next.gif'
    , imageBlank    : '/images/lightbox/lightbox-blank.gif'
    , txtImage      : 'Bild'
    , txtOf         : 'von'
  });

  if( !$('body').hasClass('admin') )
  {
    $('.accordion').accordion({
        event: "mouseover"
      , header: "h3"
      , autoHeight: true
    });
  }

});
