/*
 * SCHNELLmedia custom scripts
 * @author timo.mroz@echopark.de - http://www.echopark.de
 */
$(function(){
        // Link blurring
        $('a').click(function() {
          this.blur();
        });       
        // karmic flow slides
        var start = new Date().getTime();
        $('#container1').karmicFlow({ duration: 200 });
});

