/*******************************************************************************
Title:  functions.js
Author: sascha.scholz@actra.ch
Date:   21.12.2009
*******************************************************************************/

/* slideshow */
$(document).ready(function(){
    $('#slideshow img:gt(0)').hide();
    setInterval(function(){
      $('#slideshow :first-child').fadeOut()
         .next('img').fadeIn()
         .end().appendTo('#slideshow');},
      4000);


/* mailto maskierung */
$('span.mail').each(function () {
    var email = $(this).html().replace('[AT]','@').replace('[DOT]','.');
    $(this).html('<a href="mailto:' + email + '">' + email + '</a>');
  });


/* antispam */
  var $antispam = $('#antispam');
  $antispam.attr('value', 'Trafo');
  $antispam.parent().hide();

/* soft totopscrolling */
$('a[href=#seitenanfang]').click(function() {
  $('html, body').animate({scrollTop:0}, 'slow');
    return false;
  });
});



