var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-28013422-1']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' :
'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
  })();
function slideSwitch() {
	var $active = $('#fotogroot img.active');

    if ( $active.length == 0 ) $active = $('#fotogroot img:last');

    var $next =  $active.next().length ? $active.next()
        : $('#fotogroot img:first');

    $active.addClass('last-active');

    $next.css({opacity: 0.0})
        .addClass('active')
        .animate({opacity: 1.0}, 1000, function() {
            $active.removeClass('active last-active');
        });
}

$(function() {
    setInterval( "slideSwitch()", 5000 );
});

