﻿(function(a){a.fn.slicer=function(f){var o={direction:"bottomUp",duration:1500,sliceDelay:100,numberOfSlices:5,nextID:"next",prevID:"prev"},f=a.extend(o,f),g=a(this).attr("id"),k=a(this).width(),j=a(this).height(),e={};e.Name=g+"_slice";e.Height=null;e.Width=null;e.InitialLeft=null;e.InitialTop=null;e.LeftLimit=null;e.TopLimit=null;e.nextSliceDirection=null;e.prevSliceDirection=null;e.nextNumber=1;var h=0,m=a("#"+g+" ul").children().size(),i=null,l=null;switch(f.direction){case "bottomUp":e.Width=k/f.numberOfSlices;e.Height=j;e.InitialLeft=0;e.InitialTop=j;e.TopLimit=0;e.LeftLimit=null;e.nextSliceDirection="bottomUp";e.prevSliceDirection="topDown";break;case "topDown":e.Width=k/f.numberOfSlices;e.Height=j;e.InitialLeft=0;e.InitialTop=-j;e.TopLimit=0;e.LeftLimit=null;e.nextSliceDirection="topDown";e.prevSliceDirection="bottomUp";break;case "leftRight":e.Height=j/f.numberOfSlices;e.Width=k;e.InitialLeft=-k;e.InitialTop=0;e.LeftLimit=0;e.nextSliceDirection="leftRight";e.prevSliceDirection="rightLeft";e.TopLimit=null;break;case "rightLeft":e.Height=j/f.numberOfSlices;e.Width=k;e.InitialLeft=k;e.InitialTop=0;e.LeftLimit=0;e.TopLimit=null;e.nextSliceDirection="rightLeft";e.prevSliceDirection="leftRight"}var n='<div><span id="'+f.prevID+'"><a href="javascript:void(0);">Prev</a></span>';n+='<span id="'+f.nextID+'"><a href="javascript:void(0);">Next</a></span></div>';a("#"+g).after(n);a("#"+g+" ul").css("display","none");l=a("#"+g+" ul").children().eq(h).children().eq(0).attr("src");i=c(g,f.numberOfSlices,e,l,true);b(i,e.LeftLimit,e.TopLimit,f.duration,f.sliceDelay,false);a("a","#"+f.nextID).click(function(){h=(h+1)%m;l=a("#"+g+" ul").children().eq(h).children().eq(0).attr("src");d(i,e,f,true);i=c(g,f.numberOfSlices,e,l,true);b(i,e.LeftLimit,e.TopLimit,f.duration,f.sliceDelay,false)});a("a","#"+f.prevID).click(function(){h=h-1;if(h<0)h=m-1;l=a("#"+g+" ul").children().eq(h).children().eq(0).attr("src");d(i,e,f,false);i=c(g,f.numberOfSlices,e,l,false);b(i,e.LeftLimit,e.TopLimit,f.duration,f.sliceDelay,false)})};function d(d,e,c,h){var f=null;if(h)f=e.nextSliceDirection;else f=e.prevSliceDirection;if(d!=null)switch(f){case "bottomUp":b(d,null,-e.Height,c.duration,c.sliceDelay,true);break;case "topDown":b(d,null,e.Height,c.duration,c.sliceDelay,true);break;case "leftRight":b(d,e.Width,null,c.duration,c.sliceDelay,true);break;case "rightLeft":b(d,-e.Width,null,c.duration,c.sliceDelay,true);break;default:for(var g=0;g<d.length;g++)a("#"+d[g]).remove()}}function c(i,h,b,g,j){var c=null,d=null;if(j){c=b.InitialLeft;d=b.InitialTop}else{c=-b.InitialLeft;d=-b.InitialTop}var e=new Array(h);for(var f=0;f<e.length;f++){e[f]=b.Name+b.nextNumber;var a=document.createElement("div");a.setAttribute("id",e[f]);a.style.position="absolute";a.style.overflow="hidden";a.style.width=b.Width+"px";a.style.height=b.Height+"px";a.style.left=c+"px";a.style.top=d+"px";if(b.InitialLeft==0){a.style.backgroundImage="url("+g+")";a.style.backgroundPosition=-c+"px 0px";a.style.backgroundRepeat="no-repeat";c=c+b.Width}else{a.style.backgroundImage="url("+g+")";a.style.backgroundPosition="0px "+-d+"px";a.style.backgroundRepeat="no-repeat";d=d+b.Height}document.getElementById(i).appendChild(a);++b.nextNumber}return e}function b(e,g,i,h,j,f){var b=1,d=null;for(var c=0;c<e.length;c++){d=a("#"+e[c]);animator.move(d,g,i,h,b,f);b=b+j}return true}})(jQuery);var animator={};animator.move=function(b,c,d,a,f,e){setTimeout(function(){if(c==null)if(e)b.animate({top:d},a,null,function(){$(this).remove()});else b.animate({top:d},a);else if(e)b.animate({left:c},a,null,function(){$(this).remove()});else b.animate({left:c},a)},f)}
