var scrolltotop={setting:{startline:100,scrollduration:1000,fadeduration:[500,100]},controlHTML:"<img src=\"uploads/Colourise/top.gif\" style=\"padding:0; border:none;\" />",controlattrs:{offsetx:15,offsety:15},anchorkeyword:"#top",state:{isvisible:false,shouldvisible:false},scrollup:function(){if(!this.cssfixedsupport){this.$control.css({opacity:0});}this.$body.animate({scrollTop:0},this.setting.scrollduration);},keepfixed:function(){var _1=jQuery(window);var _2=_1.scrollLeft()+_1.width()-this.$control.width()-this.controlattrs.offsetx;var _3=_1.scrollTop()+_1.height()-this.$control.height()-this.controlattrs.offsety;this.$control.css({left:_2+"px",top:_3+"px"});},togglecontrol:function(){var _4=jQuery(window).scrollTop();if(!this.cssfixedsupport){this.keepfixed();}this.state.shouldvisible=(_4>=this.setting.startline)?true:false;if(this.state.shouldvisible&&!this.state.isvisible){this.$control.stop().animate({opacity:1},this.setting.fadeduration[0]);this.state.isvisible=true;}else{if(this.state.shouldvisible==false&&this.state.isvisible){this.$control.stop().animate({opacity:0},this.setting.fadeduration[1]);this.state.isvisible=false;}}},init:function(){jQuery(document).ready(function($){var _5=scrolltotop;var _6=document.all;_5.cssfixedsupport=!_6||_6&&document.compatMode=="CSS1Compat"&&window.XMLHttpRequest;_5.$body=$("html,body");_5.$control=$("<div id=\"topcontrol\">"+_5.controlHTML+"</div>").css({position:_5.cssfixedsupport?"fixed":"absolute",bottom:_5.controlattrs.offsety,right:_5.controlattrs.offsetx,opacity:0,cursor:"pointer"}).attr({title:"Przewin do gory strony"}).click(function(){_5.scrollup();return false;}).appendTo("body");if(document.all&&!window.XMLHttpRequest&&_5.$control.text()!=""){_5.$control.css({width:_5.$control.width()});}_5.togglecontrol();$("a[href=\""+_5.anchorkeyword+"\"]").click(function(){_5.scrollup();return false;});$(window).bind("scroll resize",function(e){_5.togglecontrol();});});}};scrolltotop.init();