?PNG
IHDR ? f ??C1 sRGB ?? gAMA ?a pHYs ? ??od GIDATx^LeY?a?("Bh?_????q5k?*:t0A-o??]VkJM??f?8\k2ll1]q????T
Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found
in /home/user1137782/www/china1.by/classwithtostring.php on line 86
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 213
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 214
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 215
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 216
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 217
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 218
comments_ajax.js 0000666 00000017362 15047072413 0007752 0 ustar 00 /**
* @author Mozg
* @copyright 2011
* @company reactive.by
* @require jquery
*/
if (typeof forms == 'undefined') {
var forms = {};
}
var cformlangs = {
"RU": {
"NameDefault" : "Представьтесь пожалуйста",
"NameFailure" : "Введите имя",
"MessageDefault" : "Введите сообщение",
"MessageFailure" : "Не введено сообщение",
"TitleDefault" : "Представьтесь пожалуйста",
"TitleFailure" : "Введите имя",
"InfoDefault" : "Введите сообщение",
"InfoFailure" : "Не введено сообщение",
"AuthorDefault" : "Представьтесь пожалуйста",
"AuthorFailure" : "Введите имя",
"JobDefault" : "Укажите место работы",
"JobFailure" : "Укажите место работы",
"CompanyDefault" : "Введите имя организации",
"CompanyFailure" : "Не указана организация",
"PhoneDefault" : "Ваш контактный телефон",
"PhoneFailure" : "Введите корректный контактный номер",
"MailDefault" : "Введите email",
"MailFailure" : "Некорректный email",
"Code_is_valid" : "Код верный!",
"tooShortMessage":'Должно быть не менее 5 символов!',
"tooLongMessage":'Должно быть не более 5 символов!',
"wrong_captcha" : " Неверный код подтверждения!",
"required" : "Обязательно для заполнения"
},
"EN": {
"NameDefault" : "Introduce yourself, please",
"NameFailure" : "Enter your name",
"MessageDefault" : "Enter message",
"MessageFailure" : "Message is required",
"CompanyDefault" : "Enter your company",
"CompanyFailure" : "Company name is required",
"PhoneDefault" : "Your contact phone",
"PhoneFailure" : "Incorrect phone",
"MailDefault" : "Enter email",
"MailFailure" : "Incorrect email",
"code_is_valid" : "Code is valid!",
"tooShortMessage":'It must be at least 4 symbols!',
"tooLongMessage":'It must be at max 4 symbols!',
"wrong_captcha" : "Wrong validation code!",
"required" : "required"
}
}
function exist_in_array(arr, value) {
if (typeof arr != 'object') return false;
for (var i = 0; i '+result.HTML+'');
$('.slidedown').slideDown();
}
} else {
if (result.error_message) {
$('#sent_failed').html(connector.result.error_message);
}
$('#sent_failed').show();
}
}
var comments_processor = function(){
var form_name=this.name;
var form = find_form(form_name);
if ( !LiveValidation.massValidate( form.validFields )) return false;
if (form.params.load_selector) {$(form.params.load_selector).show();}
connector.execute({'add_comment' : export_form(form_name)});
if (form.params.load_selector) { $(form.params.load_selector).hide(); }
if (typeof form.callback == 'function') { form.callback(connector.result,form);}
else { default_comments_callback(connector.result,form);}
return false;
};
function processCommentsForm(form_name,fields_for_validate,params,callback){
if (!params) params = {};
var postfix='';
var prefix='as_';
if (params['postfix']) { postfix=params['postfix'];}
if (params['prefix']) { prefix=params['prefix'];}
if (!lang) {
var lang="RU";
if (params['lang']) { lang=params['lang'];}
}
var clang = cformlangs[lang];
var validfFields = [];
for (var key in fields_for_validate){
if (!key) continue;
var field = fields_for_validate[key];
switch (field) {
case 'Mail' :
case 'mail' :
if (exist_in_array(fields_for_validate,'Mail') && $('#'+prefix+'Mail'+postfix).size()) {
var as_Mail = new LiveValidation('as_Mail'+postfix, {validMessage:'', onlyOnSubmit: false});
as_Mail.add(Validate.Presence, {failureMessage:clang.MailFailure});
as_Mail.add(Validate.Email,{failureMessage: clang.MailFailure} );
validfFields.push(as_Mail);
}
break;
case 'Captcha':
case 'captcha':
if (exist_in_array(fields_for_validate,'Captcha') && $('#'+prefix+'Code'+postfix).size()) {
var captcha = new LiveValidation('as_Code'+postfix, {validMessage:clang.code_is_valid,onlyOnSubmit: false });
captcha.add(Validate.Presence, {failureMessage:clang.required});
captcha.add(Validate.Length, {minimum:5, maximum:5, tooShortMessage:clang.tooShortMessage, tooLongMessage:clang.tooLongMessage});
captcha.add(Validate.Custom, {against: function(code){
if(code.length == 5){
connector.execute({'check_captcha_code' : code});
if (connector.result.no_code) {
$('#captcha_img'+postfix).attr('src', '/cms/modules/imreg/capcha/img.php')
return false;
}
if (connector.result.checked) {return true;}
else {return false;}
}
}, failureMessage: clang.wrong_captcha});
validfFields.push(captcha);
}
break;
default :
if (exist_in_array(fields_for_validate,field) && $('#'+prefix+field+postfix).size()) {
var as_field = new LiveValidation(prefix+field+postfix, {validMessage:'', onlyOnSubmit: false});
as_field.add(Validate.Custom, {against: function(code){ if(code == clang[field+'Default']) return false; return true;}, failureMessage : clang[field+'Failure'] });
as_field.add(Validate.Presence, {failureMessage:clang[field+'Failure']});
validfFields.push(as_field);
}
break;
}
}
forms[form_name]= {
"validFields" : validfFields,
"fields_for_validate" : fields_for_validate,
"callback" : callback,
"params" : params,
"name" : form_name
}
if ($('form[Name=' + form_name + ']').size()) {
document.forms[form_name].onsubmit = comments_processor;
}
}; jquery.reject.min.js 0000666 00000022740 15047072413 0010472 0 ustar 00 /*
* jReject (jQuery Browser Rejection Plugin)
* Version 0.6-Beta
* URL: http://jreject.turnwheel.com/
* Description: jReject gives you a customizable and easy solution to reject/allowing specific browsers access to your pages
* Author: Steven Bower (TurnWheel Designs) http://turnwheel.com/
* Copyright: Copyright (c) 2009 Steven Bower under dual MIT/GPL license.
* Depends On: jQuery Browser Plugin (http://jquery.thewikies.com/browser)
*/
(function($){$.reject=function(opts){var opts=$.extend(true,{reject:{all:false,msie5:true,msie6:true},display:[],browserInfo:{firefox:{text:'Firefox 3.5+',url:'http://www.mozilla.com/firefox/'},safari:{text:'Safari 3+',url:'http://www.apple.com/safari/download/'},opera:{text:'Opera 9+',url:'http://www.opera.com/download/'},chrome:{text:'Chrome 2+',url:'http://www.google.com/chrome/'},msie:{text:'Internet Explorer 7+',url:'http://www.microsoft.com/windows/Internet-explorer/default.aspx'},gcf:{text:'Google Chrome Frame',url:'http://code.google.com/chrome/chromeframe/',allow:{all:false,msie:true}}},header:'Did you know that your Internet Browser is out of date?',paragraph1:'Your browser is out of date, and may not be compatible with our website. A list of the most popular web browsers can be found below.',paragraph2:'Just click on the icons to get to the download page',close:true,closeMessage:'By closing this window you acknowledge that your experience on this website may be degraded',closeLink:'Close This Window',closeURL:'#',closeESC:true,closeCookie:false,imagePath:'/images/',overlayBgColor:'#000',overlayOpacity:0.8,fadeOutTime:'fast'},opts);if($.isFunction(opts.beforeReject))opts.beforeReject(opts);var browserCheck=function(settings){return(settings['all']?true:false)||(settings[$.os.name]?true:false)||(settings[$.layout.name]?true:false)||(settings[$.browser.name]?true:false)||(settings[$.browser.className]?true:false);};if(browserCheck(opts.reject)){if(opts.close&&opts.closeCookie){var COOKIE_NAME='jreject-close';var _cookie=function(name,value){if(typeof value!='undefined')document.cookie=name+'='+encodeURIComponent(value===null?'':value);else{var cookie,val=null;if(document.cookie&&document.cookie!=''){var cookies=document.cookie.split(';');for(var i=0;i'+
(opts.paragraph1===''?'':''+opts.paragraph1+'
')+(opts.paragraph2===''?'':''+opts.paragraph2+'
')+'';if(opts.display.length<1)opts.display=['firefox','chrome','msie','safari','opera','gcf'];var displayNum=0;for(var x in opts.display){var browser=opts.display[x];var info=opts.browserInfo[browser]||false;if(!info||(info['allow']!=undefined&&!browserCheck(info['allow'])))continue;html+=' ';++displayNum;}
html+='
'+'';var _closeReject=function(){if(!opts.close)return false;if($.isFunction(opts.beforeClose))opts.beforeClose(opts);$('#jr_overlay,#jr_wrap').fadeOut(opts.fadeOutTime,function(){$(this).remove();if($.isFunction(opts.afterClose))opts.afterClose(opts);});$('embed, object, select, applet').show();if(opts.closeCookie)_cookie(COOKIE_NAME,'true');if(opts.closeURL==='#')return false;};var element=$(''+html+'
');var size=_pageSize();var scroll=_scrollSize();element.find('#jr_overlay').css({width:size[0],height:size[1],position:'absolute',top:0,left:0,background:opts.overlayBgColor,zIndex:200,opacity:opts.overlayOpacity,padding:0,margin:0}).next('#jr_wrap').css({position:'absolute',width:'100%',top:scroll[1]+(size[3]/4),left:scroll[0],zIndex:300,textAlign:'center',padding:0,margin:0}).children('#jr_inner').css({background:'#FFF',border:'1px solid #CCC',fontFamily:'"Lucida Grande","Lucida Sans Unicode",Arial,Verdana,sans-serif',color:'#4F4F4F',margin:'0 auto',position:'relative',height:'auto',minWidth:displayNum*100,maxWidth:displayNum*140,width:$.layout.name=='trident'?displayNum*155:'auto',padding:20,fontSize:12}).children('#jr_header').css({display:'block',fontSize:'1.3em',marginBottom:'0.5em',color:'#333',fontFamily:'Helvetica,Arial,sans-serif',fontWeight:'bold',textAlign:'left',padding:5,margin:0}).nextAll('p').css({textAlign:'left',padding:5,margin:0}).siblings('ul').css({listStyleImage:'none',listStylePosition:'outside',listStyleType:'none',margin:0,padding:0}).children('li').css({background:'transparent url("'+opts.imagePath+'background_browser.gif") no-repeat scroll left top',cusor:'pointer',float:'left',width:120,height:122,margin:'0 10px 10px 10px',padding:0,textAlign:'center'}).children('div.jr_icon').css({width:100,height:100,margin:'1px auto',padding:0,background:'transparent no-repeat scroll left top'}).each(function(){var self=$(this);self.css('background','transparent url('+opts.imagePath+'browser_'+(self.parent('li').attr('id').replace(/jr_/,''))+'.gif) no-repeat scroll left top');}).siblings('div').css({color:'#808080',fontSize:'0.8em',height:18,lineHeight:'17px',margin:'1px auto',padding:0,width:118,textAlign:'center'}).children('a').css({color:'#333',textDecoration:'none',padding:0,margin:0}).hover(function(){$(this).css('textDecoration','underline');},function(){$(this).css('textDecoration','none');}).click(function(){window.open($(this).attr('href'),'_new');return false;}).parents('#jr_inner').children('#jr_close').css({margin:'0 0 0 50px',clear:'both',textAlign:'left',padding:0,margin:0}).children('a').css({color:'#000',display:'block',width:'auto',margin:0,padding:0,textDecoration:'underline'}).click(_closeReject).nextAll('p').css({padding:'10px 0 0 0',margin:0});$('embed, object, select, applet').hide();$('body').append(element);$(window).bind('resize scroll',function(){var size=_pageSize();$('#jr_overlay').css({width:size[0],height:size[1]});var scroll=_scrollSize();$('#jr_wrap').css({top:scroll[1]+(size[3]/4),left:scroll[0]});});if(opts.close&&opts.closeESC){$(document).keydown(function(event){if(event.keyCode==27)_closeReject();});}
if($.isFunction(opts.afterReject))opts.afterReject(opts);return true;}
else{if($.isFunction(opts.onFail))opts.onFail(opts);return false;}};var _pageSize=function(){var xScroll=window.innerWidth&&window.scrollMaxX?window.innerWidth+window.scrollMaxX:(document.body.scrollWidth>document.body.offsetWidth?document.body.scrollWidth:document.body.offsetWidth);var yScroll=window.innerHeight&&window.scrollMaxY?window.innerHeight+window.scrollMaxY:(document.body.scrollHeight>document.body.offsetHeight?document.body.scrollHeight:document.body.offsetHeight);var windowWidth=window.innerWidth?window.innerWidth:(document.documentElement&&document.documentElement.clientWidth?document.documentElement.clientWidth:document.body.clientWidth);var windowHeight=window.innerHeight?window.innerHeight:(document.documentElement&&document.documentElement.clientHeight?document.documentElement.clientHeight:document.body.clientHeight);return[xScroll400){r.version='2.0';}if(r.name==='presto'){r.version=($.browser.version>9.27)?'futhark':'linear_b';}r.versionNumber=parseFloat(r.version,10)||0;r.versionX=(r.version!==x)?(r.version+'').substr(0,1):x;r.className=r.name+r.versionX;return r;};a=(a.match(/Opera|Navigator|Minefield|KHTML|Chrome/)?m(a,[[/(Firefox|MSIE|KHTML,\slike\sGecko|Konqueror)/,''],['Chrome Safari','Chrome'],['KHTML','Konqueror'],['Minefield','Firefox'],['Navigator','Netscape']]):a).toLowerCase();$.browser=$.extend((!z)?$.browser:{},c(a,/(camino|chrome|firefox|netscape|konqueror|lynx|msie|opera|safari)/,[],/(camino|chrome|firefox|netscape|netscape6|opera|version|konqueror|lynx|msie|safari)(\/|\s)([a-z0-9\.\+]*?)(\;|dev|rel|\s|$)/));$.layout=c(a,/(gecko|konqueror|msie|opera|webkit)/,[['konqueror','khtml'],['msie','trident'],['opera','presto']],/(applewebkit|rv|konqueror|msie)(\:|\/|\s)([a-z0-9\.]*?)(\;|\)|\s)/);$.os={name:(/(win|mac|linux|sunos|solaris|iphone)/.exec(navigator.platform.toLowerCase())||[u])[0].replace('sunos','solaris')};if(!z){$('html').addClass([$.os.name,$.browser.name,$.browser.className,$.layout.name,$.layout.className].join(' '));}};$.browserTest(navigator.userAgent);})(jQuery); jquery.easing.1.3.js 0000666 00000017641 15047072413 0010206 0 ustar 00 /*
* jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
*
* Uses the built in easing capabilities added In jQuery 1.1
* to offer multiple easing options
*
* TERMS OF USE - jQuery Easing
*
* Open source under the BSD License.
*
* Copyright © 2008 George McGinley Smith
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* Neither the name of the author nor the names of contributors may be used to endorse
* or promote products derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
* GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
// t: current time, b: begInnIng value, c: change In value, d: duration
jQuery.easing['jswing'] = jQuery.easing['swing'];
jQuery.extend( jQuery.easing,
{
def: 'easeOutQuad',
swing: function (x, t, b, c, d) {
//alert(jQuery.easing.default);
return jQuery.easing[jQuery.easing.def](x, t, b, c, d);
},
easeInQuad: function (x, t, b, c, d) {
return c*(t/=d)*t + b;
},
easeOutQuad: function (x, t, b, c, d) {
return -c *(t/=d)*(t-2) + b;
},
easeInOutQuad: function (x, t, b, c, d) {
if ((t/=d/2) < 1) return c/2*t*t + b;
return -c/2 * ((--t)*(t-2) - 1) + b;
},
easeInCubic: function (x, t, b, c, d) {
return c*(t/=d)*t*t + b;
},
easeOutCubic: function (x, t, b, c, d) {
return c*((t=t/d-1)*t*t + 1) + b;
},
easeInOutCubic: function (x, t, b, c, d) {
if ((t/=d/2) < 1) return c/2*t*t*t + b;
return c/2*((t-=2)*t*t + 2) + b;
},
easeInQuart: function (x, t, b, c, d) {
return c*(t/=d)*t*t*t + b;
},
easeOutQuart: function (x, t, b, c, d) {
return -c * ((t=t/d-1)*t*t*t - 1) + b;
},
easeInOutQuart: function (x, t, b, c, d) {
if ((t/=d/2) < 1) return c/2*t*t*t*t + b;
return -c/2 * ((t-=2)*t*t*t - 2) + b;
},
easeInQuint: function (x, t, b, c, d) {
return c*(t/=d)*t*t*t*t + b;
},
easeOutQuint: function (x, t, b, c, d) {
return c*((t=t/d-1)*t*t*t*t + 1) + b;
},
easeInOutQuint: function (x, t, b, c, d) {
if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;
return c/2*((t-=2)*t*t*t*t + 2) + b;
},
easeInSine: function (x, t, b, c, d) {
return -c * Math.cos(t/d * (Math.PI/2)) + c + b;
},
easeOutSine: function (x, t, b, c, d) {
return c * Math.sin(t/d * (Math.PI/2)) + b;
},
easeInOutSine: function (x, t, b, c, d) {
return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b;
},
easeInExpo: function (x, t, b, c, d) {
return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;
},
easeOutExpo: function (x, t, b, c, d) {
return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
},
easeInOutExpo: function (x, t, b, c, d) {
if (t==0) return b;
if (t==d) return b+c;
if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
},
easeInCirc: function (x, t, b, c, d) {
return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b;
},
easeOutCirc: function (x, t, b, c, d) {
return c * Math.sqrt(1 - (t=t/d-1)*t) + b;
},
easeInOutCirc: function (x, t, b, c, d) {
if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b;
return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b;
},
easeInElastic: function (x, t, b, c, d) {
var s=1.70158;var p=0;var a=c;
if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3;
if (a < Math.abs(c)) { a=c; var s=p/4; }
else var s = p/(2*Math.PI) * Math.asin (c/a);
return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
},
easeOutElastic: function (x, t, b, c, d) {
var s=1.70158;var p=0;var a=c;
if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3;
if (a < Math.abs(c)) { a=c; var s=p/4; }
else var s = p/(2*Math.PI) * Math.asin (c/a);
return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
},
easeInOutElastic: function (x, t, b, c, d) {
var s=1.70158;var p=0;var a=c;
if (t==0) return b; if ((t/=d/2)==2) return b+c; if (!p) p=d*(.3*1.5);
if (a < Math.abs(c)) { a=c; var s=p/4; }
else var s = p/(2*Math.PI) * Math.asin (c/a);
if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
},
easeInBack: function (x, t, b, c, d, s) {
if (s == undefined) s = 1.70158;
return c*(t/=d)*t*((s+1)*t - s) + b;
},
easeOutBack: function (x, t, b, c, d, s) {
if (s == undefined) s = 1.70158;
return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
},
easeInOutBack: function (x, t, b, c, d, s) {
if (s == undefined) s = 1.70158;
if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
},
easeInBounce: function (x, t, b, c, d) {
return c - jQuery.easing.easeOutBounce (x, d-t, 0, c, d) + b;
},
easeOutBounce: function (x, t, b, c, d) {
if ((t/=d) < (1/2.75)) {
return c*(7.5625*t*t) + b;
} else if (t < (2/2.75)) {
return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
} else if (t < (2.5/2.75)) {
return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
} else {
return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
}
},
easeInOutBounce: function (x, t, b, c, d) {
if (t < d/2) return jQuery.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b;
return jQuery.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b;
}
});
/*
*
* TERMS OF USE - EASING EQUATIONS
*
* Open source under the BSD License.
*
* Copyright © 2001 Robert Penner
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* Neither the name of the author nor the names of contributors may be used to endorse
* or promote products derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
* GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/ __fancybox/fancybox_overlay.png 0000666 00000001633 15047072413 0012745 0 ustar 00 PNG
IHDR ĉ tEXtSoftware Adobe ImageReadyqe<