/**
 * jQuery lightBox plugin
 * This jQuery plugin was inspired and based on Lightbox 2 by Lokesh Dhakar (http://www.huddletogether.com/projects/lightbox2/)
 * and adapted to me for use like a plugin from jQuery.
 * @name jquery-lightbox-0.5.js
 * @author Leandro Vieira Pinho - http://leandrovieira.com
 * @version 0.5
 * @date April 11, 2008
 * @category jQuery plugin
 * @copyright (c) 2008 Leandro Vieira Pinho (leandrovieira.com)
 * @license CC Attribution-No Derivative Works 2.5 Brazil - http://creativecommons.org/licenses/by-nd/2.5/br/deed.en_US
 * @example Visit http://leandrovieira.com/projects/jquery/lightbox/ for more informations about this jQuery plugin
 */
(function($){$.fn.lightBox=function(settings){settings=jQuery.extend({overlayBgColor:'#000',overlayOpacity:0.8,fixedNavigation:false,imageLoading:'images/lightbox-ico-loading.gif',imageBtnPrev:'images/lightbox-btn-prev.gif',imageBtnNext:'images/lightbox-btn-next.gif',imageBtnClose:'images/lightbox-btn-close.gif',imageBlank:'images/lightbox-blank.gif',containerBorderSize:10,containerResizeSpeed:400,txtImage:'Image',txtOf:'of',keyToClose:'c',keyToPrev:'p',keyToNext:'n',imageArray:[],activeImage:0},settings);var jQueryMatchedObj=this;function _initialize(){_start(this,jQueryMatchedObj);return false;}
function _start(objClicked,jQueryMatchedObj){$('embed, object, select').css({'visibility':'hidden'});_set_interface();settings.imageArray.length=0;settings.activeImage=0;if(jQueryMatchedObj.length==1){settings.imageArray.push(new Array(objClicked.getAttribute('href'),objClicked.getAttribute('title')));}else{for(var i=0;i<jQueryMatchedObj.length;i++){settings.imageArray.push(new Array(jQueryMatchedObj[i].getAttribute('href'),jQueryMatchedObj[i].getAttribute('title')));}}
while(settings.imageArray[settings.activeImage][0]!=objClicked.getAttribute('href')){settings.activeImage++;}
_set_image_to_view();}
function _set_interface(){$('body').append('<div id="jquery-overlay"></div><div id="jquery-lightbox"><div id="lightbox-container-image-box"><div id="lightbox-container-image"><img id="lightbox-image"><div style="" id="lightbox-nav"><a href="#" id="lightbox-nav-btnPrev"></a><a href="#" id="lightbox-nav-btnNext"></a></div><div id="lightbox-loading"><a href="#" id="lightbox-loading-link"><img src="'+settings.imageLoading+'"></a></div></div></div><div id="lightbox-container-image-data-box"><div id="lightbox-container-image-data"><div id="lightbox-image-details"><span id="lightbox-image-details-caption"></span><span id="lightbox-image-details-currentNumber"></span></div><div id="lightbox-secNav"><a href="#" id="lightbox-secNav-btnClose"><img src="'+settings.imageBtnClose+'"></a></div></div></div></div>');var arrPageSizes=___getPageSize();$('#jquery-overlay').css({backgroundColor:settings.overlayBgColor,opacity:settings.overlayOpacity,width:arrPageSizes[0],height:arrPageSizes[1]}).fadeIn();var arrPageScroll=___getPageScroll();$('#jquery-lightbox').css({top:arrPageScroll[1]+(arrPageSizes[3]/10),left:arrPageScroll[0]}).show();$('#jquery-overlay,#jquery-lightbox').click(function(){_finish();});$('#lightbox-loading-link,#lightbox-secNav-btnClose').click(function(){_finish();return false;});$(window).resize(function(){var arrPageSizes=___getPageSize();$('#jquery-overlay').css({width:arrPageSizes[0],height:arrPageSizes[1]});var arrPageScroll=___getPageScroll();$('#jquery-lightbox').css({top:arrPageScroll[1]+(arrPageSizes[3]/10),left:arrPageScroll[0]});});}
function _set_image_to_view(){$('#lightbox-loading').show();if(settings.fixedNavigation){$('#lightbox-image,#lightbox-container-image-data-box,#lightbox-image-details-currentNumber').hide();}else{$('#lightbox-image,#lightbox-nav,#lightbox-nav-btnPrev,#lightbox-nav-btnNext,#lightbox-container-image-data-box,#lightbox-image-details-currentNumber').hide();}
var objImagePreloader=new Image();objImagePreloader.onload=function(){$('#lightbox-image').attr('src',settings.imageArray[settings.activeImage][0]);_resize_container_image_box(objImagePreloader.width,objImagePreloader.height);objImagePreloader.onload=function(){};};objImagePreloader.src=settings.imageArray[settings.activeImage][0];};function _resize_container_image_box(intImageWidth,intImageHeight){var intCurrentWidth=$('#lightbox-container-image-box').width();var intCurrentHeight=$('#lightbox-container-image-box').height();var intWidth=(intImageWidth+(settings.containerBorderSize*2));var intHeight=(intImageHeight+(settings.containerBorderSize*2));var intDiffW=intCurrentWidth-intWidth;var intDiffH=intCurrentHeight-intHeight;$('#lightbox-container-image-box').animate({width:intWidth,height:intHeight},settings.containerResizeSpeed,function(){_show_image();});if((intDiffW==0)&&(intDiffH==0)){if($.browser.msie){___pause(250);}else{___pause(100);}}
$('#lightbox-container-image-data-box').css({width:intImageWidth});$('#lightbox-nav-btnPrev,#lightbox-nav-btnNext').css({height:intImageHeight+(settings.containerBorderSize*2)});};function _show_image(){$('#lightbox-loading').hide();$('#lightbox-image').fadeIn(function(){_show_image_data();_set_navigation();});_preload_neighbor_images();};function _show_image_data(){$('#lightbox-container-image-data-box').slideDown('fast');$('#lightbox-image-details-caption').hide();if(settings.imageArray[settings.activeImage][1]){$('#lightbox-image-details-caption').html(settings.imageArray[settings.activeImage][1]).show();}
if(settings.imageArray.length>1){$('#lightbox-image-details-currentNumber').html(settings.txtImage+' '+(settings.activeImage+1)+' '+settings.txtOf+' '+settings.imageArray.length).show();}}
function _set_navigation(){$('#lightbox-nav').show();$('#lightbox-nav-btnPrev,#lightbox-nav-btnNext').css({'background':'transparent url('+settings.imageBlank+') no-repeat'});if(settings.activeImage!=0){if(settings.fixedNavigation){$('#lightbox-nav-btnPrev').css({'background':'url('+settings.imageBtnPrev+') left 15% no-repeat'}).unbind().bind('click',function(){settings.activeImage=settings.activeImage-1;_set_image_to_view();return false;});}else{$('#lightbox-nav-btnPrev').unbind().hover(function(){$(this).css({'background':'url('+settings.imageBtnPrev+') left 15% no-repeat'});},function(){$(this).css({'background':'transparent url('+settings.imageBlank+') no-repeat'});}).show().bind('click',function(){settings.activeImage=settings.activeImage-1;_set_image_to_view();return false;});}}
if(settings.activeImage!=(settings.imageArray.length-1)){if(settings.fixedNavigation){$('#lightbox-nav-btnNext').css({'background':'url('+settings.imageBtnNext+') right 15% no-repeat'}).unbind().bind('click',function(){settings.activeImage=settings.activeImage+1;_set_image_to_view();return false;});}else{$('#lightbox-nav-btnNext').unbind().hover(function(){$(this).css({'background':'url('+settings.imageBtnNext+') right 15% no-repeat'});},function(){$(this).css({'background':'transparent url('+settings.imageBlank+') no-repeat'});}).show().bind('click',function(){settings.activeImage=settings.activeImage+1;_set_image_to_view();return false;});}}
_enable_keyboard_navigation();}
function _enable_keyboard_navigation(){$(document).keydown(function(objEvent){_keyboard_action(objEvent);});}
function _disable_keyboard_navigation(){$(document).unbind();}
function _keyboard_action(objEvent){if(objEvent==null){keycode=event.keyCode;escapeKey=27;}else{keycode=objEvent.keyCode;escapeKey=objEvent.DOM_VK_ESCAPE;}
key=String.fromCharCode(keycode).toLowerCase();if((key==settings.keyToClose)||(key=='x')||(keycode==escapeKey)){_finish();}
if((key==settings.keyToPrev)||(keycode==37)){if(settings.activeImage!=0){settings.activeImage=settings.activeImage-1;_set_image_to_view();_disable_keyboard_navigation();}}
if((key==settings.keyToNext)||(keycode==39)){if(settings.activeImage!=(settings.imageArray.length-1)){settings.activeImage=settings.activeImage+1;_set_image_to_view();_disable_keyboard_navigation();}}}
function _preload_neighbor_images(){if((settings.imageArray.length-1)>settings.activeImage){objNext=new Image();objNext.src=settings.imageArray[settings.activeImage+1][0];}
if(settings.activeImage>0){objPrev=new Image();objPrev.src=settings.imageArray[settings.activeImage-1][0];}}
function _finish(){$('#jquery-lightbox').remove();$('#jquery-overlay').fadeOut(function(){$('#jquery-overlay').remove();});$('embed, object, select').css({'visibility':'visible'});}
function ___getPageSize(){var xScroll,yScroll;if(window.innerHeight&&window.scrollMaxY){xScroll=window.innerWidth+window.scrollMaxX;yScroll=window.innerHeight+window.scrollMaxY;}else if(document.body.scrollHeight>document.body.offsetHeight){xScroll=document.body.scrollWidth;yScroll=document.body.scrollHeight;}else{xScroll=document.body.offsetWidth;yScroll=document.body.offsetHeight;}
var windowWidth,windowHeight;if(self.innerHeight){if(document.documentElement.clientWidth){windowWidth=document.documentElement.clientWidth;}else{windowWidth=self.innerWidth;}
windowHeight=self.innerHeight;}else if(document.documentElement&&document.documentElement.clientHeight){windowWidth=document.documentElement.clientWidth;windowHeight=document.documentElement.clientHeight;}else if(document.body){windowWidth=document.body.clientWidth;windowHeight=document.body.clientHeight;}
if(yScroll<windowHeight){pageHeight=windowHeight;}else{pageHeight=yScroll;}
if(xScroll<windowWidth){pageWidth=xScroll;}else{pageWidth=windowWidth;}
arrayPageSize=new Array(pageWidth,pageHeight,windowWidth,windowHeight);return arrayPageSize;};function ___getPageScroll(){var xScroll,yScroll;if(self.pageYOffset){yScroll=self.pageYOffset;xScroll=self.pageXOffset;}else if(document.documentElement&&document.documentElement.scrollTop){yScroll=document.documentElement.scrollTop;xScroll=document.documentElement.scrollLeft;}else if(document.body){yScroll=document.body.scrollTop;xScroll=document.body.scrollLeft;}
arrayPageScroll=new Array(xScroll,yScroll);return arrayPageScroll;};function ___pause(ms){var date=new Date();curDate=null;do{var curDate=new Date();}
while(curDate-date<ms);};return this.unbind('click').click(_initialize);};})(jQuery);

/*
 * jQuery Nivo Slider v1.1
 * http://nivo.dev7studios.com
 *
 * Copyright 2010, Gilbert Pellegrom
 * Free to use and abuse under the GPL license.
 * http://www.gnu.org/copyleft/gpl.html
 * 
 * March 2010
 */

eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('(6($){$.1l.21=6(1I){8 b=0;8 Z=0;8 l=\'\';8 E=D;4=1C.1R({j:\'1c\',d:15,g:22,1x:23,L:11,1w:11,u:11,1m:6(){},1k:6(){}},1I);f.y(6(){8 3=$(f);3.e(\'1z\',\'1Y\');3.o(\'1B\');3.m(\'1B\');8 c=3.1Q();c.y(6(){z=$(f);z.e(\'1z\',\'1O\');7(z.o()>3.o()){3.o(z.o())}7(z.m()>3.m()){3.m(z.m())}z.e(\'17\',\'1F\');Z++});3.e(\'F\',\'G(\'+$(c[b]).q(\'I\')+\') J-K\');1s(8 i=0;i<4.d;i++){8 C=U.1A(3.o()/4.d);3.R($(\'<t B="5-9"></t>\').e({1L:(C*i)+\'1i\',o:C+\'1i\'}))}3.R($(\'<t B="5-x"><p></p></t>\').e(\'17\',\'1F\'));7($(c[b]).q(\'S\')!=\'\'){$(\'.5-x p\',3).1a($(c[b]).q(\'S\'));$(\'.5-x\',3).14(4.g)}8 Y=1K(6(){O(3,c,4,D)},4.1x);7(4.L){3.R(\'<t B="5-L"><a B="5-1v">1N</a><a B="5-1t">1P</a></t>\');7(4.1w){$(\'.5-L\',3).1p();3.1M(6(){$(\'.5-L\',3).1J()},6(){$(\'.5-L\',3).1p()})}$(\'a.5-1v\',3).12(\'19\',6(){7(E)X D;18(Y);b-=2;O(3,c,4,\'1r\')});$(\'a.5-1t\',3).12(\'19\',6(){7(E)X D;18(Y);O(3,c,4,\'1G\')})}7(4.u){8 13=$(\'<t B="5-u"></t>\');3.R(13);1s(8 i=0;i<c.1E;i++){13.R(\'<a B="5-1o" 1q="\'+i+\'">\'+(i+1)+\'</a>\')}$(\'.5-u a:1H(\'+b+\')\',3).1D(\'16\');$(\'.5-u a\',3).12(\'19\',6(){7(E)X D;18(Y);3.e(\'F\',\'G(\'+$(c[b]).q(\'I\')+\') J-K\');b=$(f).q(\'1q\')-1;O(3,c,4,\'1o\')})}3.1S(\'5:H\',6(){E=D;4.1k.1n(f)})});6 O(3,c,4,W){4.1m.1n(f);7(!W){3.e(\'F\',\'G(\'+$(c[b]).q(\'I\')+\') J-K\')}n{7(W==\'1r\'){3.e(\'F\',\'G(\'+$(c[b+2]).q(\'I\')+\') J-K\')}7(W==\'1G\'){3.e(\'F\',\'G(\'+$(c[b]).q(\'I\')+\') J-K\')}}b++;7(b==Z)b=0;7(b<0)b=(Z-1);7(4.u){$(\'.5-u a\',3).20(\'16\');$(\'.5-u a:1H(\'+b+\')\',3).1D(\'16\')}7($(c[b]).q(\'S\')!=\'\'){7($(\'.5-x\',3).e(\'17\')==\'1T\'){$(\'.5-x p\',3).1y(4.g,6(){$(f).1a($(c[b]).q(\'S\'));$(f).14(4.g)})}n{$(\'.5-x p\',3).1a($(c[b]).q(\'S\'))}$(\'.5-x\',3).14(4.g)}n{$(\'.5-x\',3).1y(4.g)}8 i=0;$(\'.5-9\',3).y(6(){8 C=U.1A(3.o()/4.d);$(f).e({m:\'A\',r:\'0\',F:\'G(\'+$(c[b]).q(\'I\')+\') J-K -\'+((C+(i*C))-C)+\'1i 0%\'});i++});7(4.j==\'1c\'){8 1h=1X 1W("1f","N","1e","P","1d","Q","1b","V");l=1h[U.1V(U.1c()*(1h.1E+1))];7(l==1U)l=\'V\'}E=11;7(4.j==\'1Z\'||4.j==\'1f\'||l==\'1f\'||4.j==\'N\'||l==\'N\'){8 h=0;8 i=0;8 d=$(\'.5-9\',3);7(4.j==\'N\'||l==\'N\')d=$(\'.5-9\',3).M();d.y(6(){8 9=$(f);9.e(\'1g\',\'A\');7(i==4.d-1){w(6(){9.s({m:\'k%\',r:\'1.0\'},4.g,\'\',6(){3.T(\'5:H\')})},(k+h))}n{w(6(){9.s({m:\'k%\',r:\'1.0\'},4.g)},(k+h))}h+=10;i++})}n 7(4.j==\'25\'||4.j==\'1e\'||l==\'1e\'||4.j==\'P\'||l==\'P\'){8 h=0;8 i=0;8 d=$(\'.5-9\',3);7(4.j==\'P\'||l==\'P\')d=$(\'.5-9\',3).M();d.y(6(){8 9=$(f);9.e(\'1u\',\'A\');7(i==4.d-1){w(6(){9.s({m:\'k%\',r:\'1.0\'},4.g,\'\',6(){3.T(\'5:H\')})},(k+h))}n{w(6(){9.s({m:\'k%\',r:\'1.0\'},4.g)},(k+h))}h+=10;i++})}n 7(4.j==\'1d\'||4.j==\'24\'||l==\'1d\'||4.j==\'Q\'||l==\'Q\'){8 h=0;8 i=0;8 v=0;8 d=$(\'.5-9\',3);7(4.j==\'Q\'||l==\'Q\')d=$(\'.5-9\',3).M();d.y(6(){8 9=$(f);7(i==0){9.e(\'1g\',\'A\');i++}n{9.e(\'1u\',\'A\');i=0}7(v==4.d-1){w(6(){9.s({m:\'k%\',r:\'1.0\'},4.g,\'\',6(){3.T(\'5:H\')})},(k+h))}n{w(6(){9.s({m:\'k%\',r:\'1.0\'},4.g)},(k+h))}h+=10;v++})}n 7(4.j==\'1b\'||l==\'1b\'){8 h=0;8 i=0;$(\'.5-9\',3).y(6(){8 9=$(f);8 1j=9.o();9.e({1g:\'A\',m:\'k%\',o:\'A\'});7(i==4.d-1){w(6(){9.s({o:1j,r:\'1.0\'},4.g,\'\',6(){3.T(\'5:H\')})},(k+h))}n{w(6(){9.s({o:1j,r:\'1.0\'},4.g)},(k+h))}h+=10;i++})}n 7(4.j==\'V\'||l==\'V\'){8 i=0;$(\'.5-9\',3).y(6(){$(f).e(\'m\',\'k%\');7(i==4.d-1){$(f).s({r:\'1.0\'},(4.g*2),\'\',6(){3.T(\'5:H\')})}n{$(f).s({r:\'1.0\'},(4.g*2))}i++})}}X f};$.1l.M=[].M})(1C);',62,130,'|||slider|settings|nivo|function|if|var|slice||currentSlide|kids|slices|css|this|animSpeed|timeBuff||effect|100|randAnim|height|else|width||attr|opacity|animate|div|controlNav||setTimeout|caption|each|child|0px|class|sliceWidth|false|running|background|url|animFinished|src|no|repeat|directionNav|reverse|sliceDownLeft|nivoRun|sliceUpLeft|sliceUpDownLeft|append|title|trigger|Math|fade|nudge|return|timer|totalSlides|50|true|live|nivoControl|fadeIn||active|display|clearInterval|click|html|fold|random|sliceUpDown|sliceUpRight|sliceDownRight|top|anims|px|origWidth|afterChange|fn|beforeChange|call|control|hide|rel|prev|for|nextNav|bottom|prevNav|directionNavHide|pauseTime|fadeOut|position|round|1px|jQuery|addClass|length|none|next|eq|options|show|setInterval|left|hover|Prev|absolute|Next|children|extend|bind|block|undefined|floor|Array|new|relative|sliceDown|removeClass|nivoSlider|500|3000|sliceUpDownRight|sliceUp'.split('|'),0,{}))

/**
 * jQuery.ScrollTo - Easy element scrolling using jQuery.
 * Copyright (c) 2007-2009 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com
 * Dual licensed under MIT and GPL.
 * Date: 5/25/2009
 * @author Ariel Flesler
 * @version 1.4.2
 *
 * http://flesler.blogspot.com/2007/10/jqueryscrollto.html
 */
;(function(d){var k=d.scrollTo=function(a,i,e){d(window).scrollTo(a,i,e)};k.defaults={axis:'xy',duration:parseFloat(d.fn.jquery)>=1.3?0:1};k.window=function(a){return d(window)._scrollable()};d.fn._scrollable=function(){return this.map(function(){var a=this,i=!a.nodeName||d.inArray(a.nodeName.toLowerCase(),['iframe','#document','html','body'])!=-1;if(!i)return a;var e=(a.contentWindow||a).document||a.ownerDocument||a;return d.browser.safari||e.compatMode=='BackCompat'?e.body:e.documentElement})};d.fn.scrollTo=function(n,j,b){if(typeof j=='object'){b=j;j=0}if(typeof b=='function')b={onAfter:b};if(n=='max')n=9e9;b=d.extend({},k.defaults,b);j=j||b.speed||b.duration;b.queue=b.queue&&b.axis.length>1;if(b.queue)j/=2;b.offset=p(b.offset);b.over=p(b.over);return this._scrollable().each(function(){var q=this,r=d(q),f=n,s,g={},u=r.is('html,body');switch(typeof f){case'number':case'string':if(/^([+-]=)?\d+(\.\d+)?(px|%)?$/.test(f)){f=p(f);break}f=d(f,this);case'object':if(f.is||f.style)s=(f=d(f)).offset()}d.each(b.axis.split(''),function(a,i){var e=i=='x'?'Left':'Top',h=e.toLowerCase(),c='scroll'+e,l=q[c],m=k.max(q,i);if(s){g[c]=s[h]+(u?0:l-r.offset()[h]);if(b.margin){g[c]-=parseInt(f.css('margin'+e))||0;g[c]-=parseInt(f.css('border'+e+'Width'))||0}g[c]+=b.offset[h]||0;if(b.over[h])g[c]+=f[i=='x'?'width':'height']()*b.over[h]}else{var o=f[h];g[c]=o.slice&&o.slice(-1)=='%'?parseFloat(o)/100*m:o}if(/^\d+$/.test(g[c]))g[c]=g[c]<=0?0:Math.min(g[c],m);if(!a&&b.queue){if(l!=g[c])t(b.onAfterFirst);delete g[c]}});t(b.onAfter);function t(a){r.animate(g,j,b.easing,a&&function(){a.call(this,n,b)})}}).end()};k.max=function(a,i){var e=i=='x'?'Width':'Height',h='scroll'+e;if(!d(a).is('html,body'))return a[h]-d(a)[e.toLowerCase()]();var c='client'+e,l=a.ownerDocument.documentElement,m=a.ownerDocument.body;return Math.max(l[h],m[h])-Math.min(l[c],m[c])};function p(a){return typeof a=='object'?a:{top:a,left:a}}})(jQuery);

/**
 * jQuery.LocalScroll - Animated scrolling navigation, using anchors.
 * Copyright (c) 2007-2009 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com
 * Dual licensed under MIT and GPL.
 * Date: 3/11/2009
 * @author Ariel Flesler
 * @version 1.2.7
 **/
;(function($){var l=location.href.replace(/#.*/,'');var g=$.localScroll=function(a){$('body').localScroll(a)};g.defaults={duration:1e3,axis:'y',event:'click',stop:true,target:window,reset:true};g.hash=function(a){if(location.hash){a=$.extend({},g.defaults,a);a.hash=false;if(a.reset){var e=a.duration;delete a.duration;$(a.target).scrollTo(0,a);a.duration=e}i(0,location,a)}};$.fn.localScroll=function(b){b=$.extend({},g.defaults,b);return b.lazy?this.bind(b.event,function(a){var e=$([a.target,a.target.parentNode]).filter(d)[0];if(e)i(a,e,b)}):this.find('a,area').filter(d).bind(b.event,function(a){i(a,this,b)}).end().end();function d(){return!!this.href&&!!this.hash&&this.href.replace(this.hash,'')==l&&(!b.filter||$(this).is(b.filter))}};function i(a,e,b){var d=e.hash.slice(1),f=document.getElementById(d)||document.getElementsByName(d)[0];if(!f)return;if(a)a.preventDefault();var h=$(b.target);if(b.lock&&h.is(':animated')||b.onBefore&&b.onBefore.call(b,a,f,h)===false)return;if(b.stop)h.stop(true);if(b.hash){var j=f.id==d?'id':'name',k=$('<a> </a>').attr(j,d).css({position:'absolute',top:$(window).scrollTop(),left:$(window).scrollLeft()});f[j]='';$('body').prepend(k);location=e.hash;k.remove();f[j]=d}h.scrollTo(f,b).trigger('notify.serialScroll',[f])}})(jQuery);
