﻿jQuery(document).ready(function(){jQuery("#bildspel li:not(:first)").hide();jQuery("#bildspel ul").css("position","relative");jQuery("#bildspel li").css("position","absolute");jQuery("#bildspel img").css("position","absolute");jQuery("#bildspel img").each(function(a){var b=jQuery(this).height();var c=164-b;jQuery(this).css("top",c)});panCurrent()});function panCurrent(){var a=jQuery("#bildspel li:visible img");var b=a.height();var c=164-b;a.animate({top:0},(-c)*15,function(){setTimeout(switchImages,1000)})}function switchImages(){var d=jQuery("#bildspel li:visible");var e=d.next();if(e.length===0){e=jQuery("#bildspel li:first")}d.css("z-index",4);e.css("z-index",3);e.show();d.fadeOut(2000,function(){var a=d.find("img");var b=a.height();var c=164-b;d.find("img").css("top",c);setTimeout(panCurrent,1000)})}
