
// jquery - Newsticker
$(document).ready(function() { 
    $('#news').newsticker(); 
});

// jquery - Einblenden der Content-Boxen
$(document).ready(function() {
  $('a.viewall').click( function() {
      $(this).parent("p").parent("div").children("div.hidebox").animate({ height: 'show', opacity: 'show' }, 'fast');
      $(this).css({'display': 'none'});
      return false;
  });
  $('.gallery a, a.lightbox').fancybox({'titlePosition':'inside'});
});
