// source --> http://teslatec.com.br/wp-content/plugins/alligator-popup/js/popup.js?ver=1.2.0 jQuery(document).ready(function($) { $('.popup').click(function() { var w = $(this).data('width'); var h = $(this).data('height'); var s = $(this).data('scrollbars'); var left = (screen.width/2) - (w/2); var top = (screen.height/2) - (h/2); var NWin = window.open($(this).prop('href'),'','scrollbars=' + s + ',resizable=yes,width=' + w + ',height=' + h + ',top=' + top + ',left=' + left); if (window.focus) { NWin.focus(); } return false; }); }); // source --> http://teslatec.com.br/wp-content/themes/MyCorp/js/sliding_effect.js?ver=4.7.24 jQuery(document).ready(function() { slide(".sidebar-box", 4, 0, 150, .6); }); function slide(navigation_id, pad_out, pad_in, time, multiplier) { // creates the target paths var list_elements = navigation_id + " li"; var link_elements = list_elements + " a"; // initiates the timer used for the sliding animation var timer = 0; // creates the slide animation for all list elements jQuery(list_elements).each(function(i) { // margin left = - ([width of element] + [total vertical padding of element]) jQuery(this).css("margin-left","-180px"); // updates timer timer = (timer*multiplier + time); jQuery(this).animate({ marginLeft: "0" }, timer); jQuery(this).animate({ marginLeft: "10px" }, timer); jQuery(this).animate({ marginLeft: "0" }, timer); }); // creates the hover-slide effect for all link elements jQuery(link_elements).each(function(i) { jQuery(this).hover( function() { jQuery(this).animate({ paddingLeft: pad_out }, 150); }, function() { jQuery(this).animate({ paddingLeft: pad_in }, 150); }); }); }; // source --> http://teslatec.com.br/wp-content/themes/MyCorp/js/superfish.js?ver=4.7.24 /* * Superfish v1.4.8 - jQuery menu widget * Copyright (c) 2008 Joel Birch * * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html * * CHANGELOG: http://users.tpg.com.au/j_birch/plugins/superfish/changelog.txt */ ;(function($){ $.fn.superfish = function(op){ var sf = $.fn.superfish, c = sf.c, $arrow = $([' »'].join('')), over = function(){ var $$ = $(this), menu = getMenu($$); clearTimeout(menu.sfTimer); $$.showSuperfishUl().siblings().hideSuperfishUl(); }, out = function(){ var $$ = $(this), menu = getMenu($$), o = sf.op; clearTimeout(menu.sfTimer); menu.sfTimer=setTimeout(function(){ o.retainPath=($.inArray($$[0],o.$path)>-1); $$.hideSuperfishUl(); if (o.$path.length && $$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);} },o.delay); }, getMenu = function($menu){ var menu = $menu.parents(['ul.',c.menuClass,':first'].join(''))[0]; sf.op = sf.o[menu.serial]; return menu; }, addArrow = function($a){ $a.addClass(c.anchorClass).append($arrow.clone()); }; return this.each(function() { var s = this.serial = sf.o.length; var o = $.extend({},sf.defaults,op); o.$path = $('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){ $(this).addClass([o.hoverClass,c.bcClass].join(' ')) .filter('li:has(ul)').removeClass(o.pathClass); }); sf.o[s] = sf.op = o; $('li:has(ul)',this)[($.fn.hoverIntent && !o.disableHI) ? 'hoverIntent' : 'hover'](over,out).each(function() { if (o.autoArrows) addArrow( $('>a:first-child',this) ); }) .not('.'+c.bcClass) .hideSuperfishUl(); var $a = $('a',this); $a.each(function(i){ var $li = $a.eq(i).parents('li'); $a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);}); }); o.onInit.call(this); }).each(function() { var menuClasses = [c.menuClass]; if (sf.op.dropShadows && !($.browser.msie && $.browser.version < 7)) menuClasses.push(c.shadowClass); $(this).addClass(menuClasses.join(' ')); }); }; var sf = $.fn.superfish; sf.o = []; sf.op = {}; sf.IE7fix = function(){ var o = sf.op; if ($.browser.msie && $.browser.version > 6 && o.dropShadows && o.animation.opacity!=undefined) this.toggleClass(sf.c.shadowClass+'-off'); }; sf.c = { bcClass : 'sf-breadcrumb', menuClass : 'sf-js-enabled', anchorClass : 'sf-with-ul', arrowClass : 'sf-sub-indicator', shadowClass : 'sf-shadow' }; sf.defaults = { hoverClass : 'sfHover', pathClass : 'overideThisToUse', pathLevels : 1, delay : 800, animation : {opacity:'show'}, speed : 'normal', autoArrows : true, dropShadows : true, disableHI : false, // true disables hoverIntent detection onInit : function(){}, // callback functions onBeforeShow: function(){}, onShow : function(){}, onHide : function(){} }; $.fn.extend({ hideSuperfishUl : function(){ var o = sf.op, not = (o.retainPath===true) ? o.$path : ''; o.retainPath = false; var $ul = $(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass) .find('>ul').hide().css('visibility','hidden'); o.onHide.call($ul); return this; }, showSuperfishUl : function(){ var o = sf.op, sh = sf.c.shadowClass+'-off', $ul = this.addClass(o.hoverClass) .find('>ul:hidden').css('visibility','visible'); sf.IE7fix.call($ul); o.onBeforeShow.call($ul); $ul.animate(o.animation,o.speed,function(){ sf.IE7fix.call($ul); o.onShow.call($ul); }); return this; } }); })(jQuery); // source --> http://teslatec.com.br/wp-content/themes/MyCorp/js/supersubs.js?ver=4.7.24 /* * Supersubs v0.2b - jQuery plugin * Copyright (c) 2008 Joel Birch * * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html * * * This plugin automatically adjusts submenu widths of suckerfish-style menus to that of * their longest list item children. If you use this, please expect bugs and report them * to the jQuery Google Group with the word 'Superfish' in the subject line. * */ ;(function($){ // $ will refer to jQuery within this closure $.fn.supersubs = function(options){ var opts = $.extend({}, $.fn.supersubs.defaults, options); // return original object to support chaining return this.each(function() { // cache selections var $$ = $(this); // support metadata var o = $.meta ? $.extend({}, opts, $$.data()) : opts; // get the font size of menu. // .css('fontSize') returns various results cross-browser, so measure an em dash instead var fontsize = $('').css({ 'padding' : 0, 'position' : 'absolute', 'top' : '-999em', 'width' : 'auto' }).appendTo($$).width(); //clientWidth is faster, but was incorrect here // remove em dash $('#menu-fontsize').remove(); // cache all ul elements $ULs = $$.find('ul'); // loop through each ul in menu $ULs.each(function(i) { // cache this ul var $ul = $ULs.eq(i); // get all (li) children of this ul var $LIs = $ul.children(); // get all anchor grand-children var $As = $LIs.children('a'); // force content to one line and save current float property var liFloat = $LIs.css('white-space','nowrap').css('float'); // remove width restrictions and floats so elements remain vertically stacked var emWidth = $ul.add($LIs).add($As).css({ 'float' : 'none', 'width' : 'auto' }) // this ul will now be shrink-wrapped to longest li due to position:absolute // so save its width as ems. Clientwidth is 2 times faster than .width() - thanks Dan Switzer .end().end()[0].clientWidth / fontsize; // add more width to ensure lines don't turn over at certain sizes in various browsers emWidth += o.extraWidth; // restrict to at least minWidth and at most maxWidth if (emWidth > o.maxWidth) { emWidth = o.maxWidth; } else if (emWidth < o.minWidth) { emWidth = o.minWidth; } emWidth += 'em'; // set ul to width in ems $ul.css('width',emWidth); // restore li floats to avoid IE bugs // set li width to full width of this ul // revert white-space to normal $LIs.css({ 'float' : liFloat, 'width' : '100%', 'white-space' : 'normal' }) // update offset position of descendant ul to reflect new width of parent .each(function(){ var $childUl = $('>ul',this); var offsetDirection = $childUl.css('left')!==undefined ? 'left' : 'right'; $childUl.css(offsetDirection,emWidth); }); }); }); }; // expose defaults $.fn.supersubs.defaults = { minWidth : 9, // requires em unit. maxWidth : 25, // requires em unit. extraWidth : 0 // extra width can ensure lines don't sometimes turn over due to slight browser differences in how they round-off values }; })(jQuery); // plugin code ends; // source --> http://teslatec.com.br/wp-content/themes/MyCorp/js/jquery.nivo.slider.pack.js?ver=4.7.24 /* * jQuery Nivo Slider v2.5.1 * http://nivo.dev7studios.com * * Copyright 2011, Gilbert Pellegrom * Free to use and abuse under the MIT license. * http://www.opensource.org/licenses/mit-license.php * * March 2010 */ (function($){var NivoSlider=function(element,options){var settings=$.extend({},$.fn.nivoSlider.defaults,options);var vars={currentSlide:0,currentImage:'',totalSlides:0,randAnim:'',running:false,paused:false,stop:false};var slider=$(element);slider.data('nivo:vars',vars);slider.css('position','relative');slider.addClass('nivoSlider');var kids=slider.children();kids.each(function(){var child=$(this);var link='';if(!child.is('img')){if(child.is('a')){child.addClass('nivo-imageLink');link=child;} child=child.find('img:first');} var childWidth=child.width();if(childWidth==0)childWidth=child.attr('width');var childHeight=child.height();if(childHeight==0)childHeight=child.attr('height');if(childWidth>slider.width()){slider.width(childWidth);} if(childHeight>slider.height()){slider.height(childHeight);} if(link!=''){link.css('display','none');} child.css('display','none');vars.totalSlides++;});if(settings.startSlide>0){if(settings.startSlide>=vars.totalSlides)settings.startSlide=vars.totalSlides-1;vars.currentSlide=settings.startSlide;} if($(kids[vars.currentSlide]).is('img')){vars.currentImage=$(kids[vars.currentSlide]);}else{vars.currentImage=$(kids[vars.currentSlide]).find('img:first');} if($(kids[vars.currentSlide]).is('a')){$(kids[vars.currentSlide]).css('display','block');} slider.css('background','url("'+vars.currentImage.attr('src')+'") no-repeat');slider.append($('').css({display:'none',opacity:settings.captionOpacity}));var processCaption=function(settings){var nivoCaption=$('.nivo-caption',slider);if(vars.currentImage.attr('title')!=''){var title=vars.currentImage.attr('title');if(title.substr(0,1)=='#')title=$(title).html();if(nivoCaption.css('display')=='block'){nivoCaption.find('p').fadeOut(settings.animSpeed,function(){$(this).html(title);$(this).fadeIn(settings.animSpeed);});}else{nivoCaption.find('p').html(title);} nivoCaption.fadeIn(settings.animSpeed);}else{nivoCaption.fadeOut(settings.animSpeed);}} processCaption(settings);var timer=0;if(!settings.manualAdvance&&kids.length>1){timer=setInterval(function(){nivoRun(slider,kids,settings,false);},settings.pauseTime);} if(settings.directionNav){slider.append('
'+settings.prevText+''+settings.nextText+'
');if(settings.directionNavHide){$('.nivo-directionNav',slider).hide();slider.hover(function(){$('.nivo-directionNav',slider).show();},function(){$('.nivo-directionNav',slider).hide();});} $('a.nivo-prevNav',slider).live('click',function(){if(vars.running)return false;clearInterval(timer);timer='';vars.currentSlide-=2;nivoRun(slider,kids,settings,'prev');});$('a.nivo-nextNav',slider).live('click',function(){if(vars.running)return false;clearInterval(timer);timer='';nivoRun(slider,kids,settings,'next');});} if(settings.controlNav){var nivoControl=$('
');slider.append(nivoControl);for(var i=0;i');}else{nivoControl.append('');}}else{nivoControl.append(''+(i+1)+'');}} $('.nivo-controlNav a:eq('+vars.currentSlide+')',slider).addClass('active');$('.nivo-controlNav a',slider).live('click',function(){if(vars.running)return false;if($(this).hasClass('active'))return false;clearInterval(timer);timer='';slider.css('background','url("'+vars.currentImage.attr('src')+'") no-repeat');vars.currentSlide=$(this).attr('rel')-1;nivoRun(slider,kids,settings,'control');});} if(settings.keyboardNav){$(window).keypress(function(event){if(event.keyCode=='37'){if(vars.running)return false;clearInterval(timer);timer='';vars.currentSlide-=2;nivoRun(slider,kids,settings,'prev');} if(event.keyCode=='39'){if(vars.running)return false;clearInterval(timer);timer='';nivoRun(slider,kids,settings,'next');}});} if(settings.pauseOnHover){slider.hover(function(){vars.paused=true;clearInterval(timer);timer='';},function(){vars.paused=false;if(timer==''&&!settings.manualAdvance){timer=setInterval(function(){nivoRun(slider,kids,settings,false);},settings.pauseTime);}});} slider.bind('nivo:animFinished',function(){vars.running=false;$(kids).each(function(){if($(this).is('a')){$(this).css('display','none');}});if($(kids[vars.currentSlide]).is('a')){$(kids[vars.currentSlide]).css('display','block');} if(timer==''&&!vars.paused&&!settings.manualAdvance){timer=setInterval(function(){nivoRun(slider,kids,settings,false);},settings.pauseTime);} settings.afterChange.call(this);});var createSlices=function(slider,settings,vars){for(var i=0;i').css({left:(sliceWidth*i)+'px',width:(slider.width()-(sliceWidth*i))+'px',height:'0px',opacity:'0',background:'url("'+vars.currentImage.attr('src')+'") no-repeat -'+((sliceWidth+(i*sliceWidth))-sliceWidth)+'px 0%'}));}else{slider.append($('
').css({left:(sliceWidth*i)+'px',width:sliceWidth+'px',height:'0px',opacity:'0',background:'url("'+vars.currentImage.attr('src')+'") no-repeat -'+((sliceWidth+(i*sliceWidth))-sliceWidth)+'px 0%'}));}}} var createBoxes=function(slider,settings,vars){var boxWidth=Math.round(slider.width()/settings.boxCols);var boxHeight=Math.round(slider.height()/settings.boxRows);for(var rows=0;rows').css({opacity:0,left:(boxWidth*cols)+'px',top:(boxHeight*rows)+'px',width:(slider.width()-(boxWidth*cols))+'px',height:boxHeight+'px',background:'url("'+vars.currentImage.attr('src')+'") no-repeat -'+((boxWidth+(cols*boxWidth))-boxWidth)+'px -'+((boxHeight+(rows*boxHeight))-boxHeight)+'px'}));}else{slider.append($('
').css({opacity:0,left:(boxWidth*cols)+'px',top:(boxHeight*rows)+'px',width:boxWidth+'px',height:boxHeight+'px',background:'url("'+vars.currentImage.attr('src')+'") no-repeat -'+((boxWidth+(cols*boxWidth))-boxWidth)+'px -'+((boxHeight+(rows*boxHeight))-boxHeight)+'px'}));}}}} var nivoRun=function(slider,kids,settings,nudge){var vars=slider.data('nivo:vars');if(vars&&(vars.currentSlide==vars.totalSlides-1)){settings.lastSlide.call(this);} if((!vars||vars.stop)&&!nudge)return false;settings.beforeChange.call(this);if(!nudge){slider.css('background','url("'+vars.currentImage.attr('src')+'") no-repeat');}else{if(nudge=='prev'){slider.css('background','url("'+vars.currentImage.attr('src')+'") no-repeat');} if(nudge=='next'){slider.css('background','url("'+vars.currentImage.attr('src')+'") no-repeat');}} vars.currentSlide++;if(vars.currentSlide==vars.totalSlides){vars.currentSlide=0;settings.slideshowEnd.call(this);} if(vars.currentSlide<0)vars.currentSlide=(vars.totalSlides-1);if($(kids[vars.currentSlide]).is('img')){vars.currentImage=$(kids[vars.currentSlide]);}else{vars.currentImage=$(kids[vars.currentSlide]).find('img:first');} if(settings.controlNav){$('.nivo-controlNav a',slider).removeClass('active');$('.nivo-controlNav a:eq('+vars.currentSlide+')',slider).addClass('active');} processCaption(settings);$('.nivo-slice',slider).remove();$('.nivo-box',slider).remove();if(settings.effect=='random'){var anims=new Array('sliceDownRight','sliceDownLeft','sliceUpRight','sliceUpLeft','sliceUpDown','sliceUpDownLeft','fold','fade','boxRandom','boxRain','boxRainReverse','boxRainGrow','boxRainGrowReverse');vars.randAnim=anims[Math.floor(Math.random()*(anims.length+1))];if(vars.randAnim==undefined)vars.randAnim='fade';} if(settings.effect.indexOf(',')!=-1){var anims=settings.effect.split(',');vars.randAnim=anims[Math.floor(Math.random()*(anims.length))];if(vars.randAnim==undefined)vars.randAnim='fade';} vars.running=true;if(settings.effect=='sliceDown'||settings.effect=='sliceDownRight'||vars.randAnim=='sliceDownRight'||settings.effect=='sliceDownLeft'||vars.randAnim=='sliceDownLeft'){createSlices(slider,settings,vars);var timeBuff=0;var i=0;var slices=$('.nivo-slice',slider);if(settings.effect=='sliceDownLeft'||vars.randAnim=='sliceDownLeft')slices=$('.nivo-slice',slider)._reverse();slices.each(function(){var slice=$(this);slice.css({'top':'0px'});if(i==settings.slices-1){setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed,'',function(){slider.trigger('nivo:animFinished');});},(100+timeBuff));}else{setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed);},(100+timeBuff));} timeBuff+=50;i++;});} else if(settings.effect=='sliceUp'||settings.effect=='sliceUpRight'||vars.randAnim=='sliceUpRight'||settings.effect=='sliceUpLeft'||vars.randAnim=='sliceUpLeft'){createSlices(slider,settings,vars);var timeBuff=0;var i=0;var slices=$('.nivo-slice',slider);if(settings.effect=='sliceUpLeft'||vars.randAnim=='sliceUpLeft')slices=$('.nivo-slice',slider)._reverse();slices.each(function(){var slice=$(this);slice.css({'bottom':'0px'});if(i==settings.slices-1){setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed,'',function(){slider.trigger('nivo:animFinished');});},(100+timeBuff));}else{setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed);},(100+timeBuff));} timeBuff+=50;i++;});} else if(settings.effect=='sliceUpDown'||settings.effect=='sliceUpDownRight'||vars.randAnim=='sliceUpDown'||settings.effect=='sliceUpDownLeft'||vars.randAnim=='sliceUpDownLeft'){createSlices(slider,settings,vars);var timeBuff=0;var i=0;var v=0;var slices=$('.nivo-slice',slider);if(settings.effect=='sliceUpDownLeft'||vars.randAnim=='sliceUpDownLeft')slices=$('.nivo-slice',slider)._reverse();slices.each(function(){var slice=$(this);if(i==0){slice.css('top','0px');i++;}else{slice.css('bottom','0px');i=0;} if(v==settings.slices-1){setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed,'',function(){slider.trigger('nivo:animFinished');});},(100+timeBuff));}else{setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed);},(100+timeBuff));} timeBuff+=50;v++;});} else if(settings.effect=='fold'||vars.randAnim=='fold'){createSlices(slider,settings,vars);var timeBuff=0;var i=0;$('.nivo-slice',slider).each(function(){var slice=$(this);var origWidth=slice.width();slice.css({top:'0px',height:'100%',width:'0px'});if(i==settings.slices-1){setTimeout(function(){slice.animate({width:origWidth,opacity:'1.0'},settings.animSpeed,'',function(){slider.trigger('nivo:animFinished');});},(100+timeBuff));}else{setTimeout(function(){slice.animate({width:origWidth,opacity:'1.0'},settings.animSpeed);},(100+timeBuff));} timeBuff+=50;i++;});} else if(settings.effect=='fade'||vars.randAnim=='fade'){createSlices(slider,settings,vars);var firstSlice=$('.nivo-slice:first',slider);firstSlice.css({'height':'100%','width':slider.width()+'px'});firstSlice.animate({opacity:'1.0'},(settings.animSpeed*2),'',function(){slider.trigger('nivo:animFinished');});} else if(settings.effect=='slideInRight'||vars.randAnim=='slideInRight'){createSlices(slider,settings,vars);var firstSlice=$('.nivo-slice:first',slider);firstSlice.css({'height':'100%','width':'0px','opacity':'1'});firstSlice.animate({width:slider.width()+'px'},(settings.animSpeed*2),'',function(){slider.trigger('nivo:animFinished');});} else if(settings.effect=='slideInLeft'||vars.randAnim=='slideInLeft'){createSlices(slider,settings,vars);var firstSlice=$('.nivo-slice:first',slider);firstSlice.css({'height':'100%','width':'0px','opacity':'1','left':'','right':'0px'});firstSlice.animate({width:slider.width()+'px'},(settings.animSpeed*2),'',function(){firstSlice.css({'left':'0px','right':''});slider.trigger('nivo:animFinished');});} else if(settings.effect=='boxRandom'||vars.randAnim=='boxRandom'){createBoxes(slider,settings,vars);var totalBoxes=settings.boxCols*settings.boxRows;var i=0;var timeBuff=0;var boxes=shuffle($('.nivo-box',slider));boxes.each(function(){var box=$(this);if(i==totalBoxes-1){setTimeout(function(){box.animate({opacity:'1'},settings.animSpeed,'',function(){slider.trigger('nivo:animFinished');});},(100+timeBuff));}else{setTimeout(function(){box.animate({opacity:'1'},settings.animSpeed);},(100+timeBuff));} timeBuff+=20;i++;});} else if(settings.effect=='boxRain'||vars.randAnim=='boxRain'||settings.effect=='boxRainReverse'||vars.randAnim=='boxRainReverse'||settings.effect=='boxRainGrow'||vars.randAnim=='boxRainGrow'||settings.effect=='boxRainGrowReverse'||vars.randAnim=='boxRainGrowReverse'){createBoxes(slider,settings,vars);var totalBoxes=settings.boxCols*settings.boxRows;var i=0;var timeBuff=0;var rowIndex=0;var colIndex=0;var box2Darr=new Array();box2Darr[rowIndex]=new Array();var boxes=$('.nivo-box',slider);if(settings.effect=='boxRainReverse'||vars.randAnim=='boxRainReverse'||settings.effect=='boxRainGrowReverse'||vars.randAnim=='boxRainGrowReverse'){boxes=$('.nivo-box',slider)._reverse();} boxes.each(function(){box2Darr[rowIndex][colIndex]=$(this);colIndex++;if(colIndex==settings.boxCols){rowIndex++;colIndex=0;box2Darr[rowIndex]=new Array();}});for(var cols=0;cols<(settings.boxCols*2);cols++){var prevCol=cols;for(var rows=0;rows=0&&prevCol http://teslatec.com.br/wp-content/plugins/cforms/js/cforms.js /* Copyright 2007-2011 OLIVER SEIDEL (email : oliver.seidel @ deliciousdays.com) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ // ONLY in case AJAX DOESN'T work you may want to double-check this path: // If you do change this setting: CLEAR your BROWSER CACHE & RESTART you BROWSER! // OLD SETTING: var sajax_uri = '/wp-content/plugins/cforms/lib_ajax.php'; // DYNAMIC NEW SETTING, if the below doesn't work, please try the above var sajax_uri = window.location.protocol + "//" + window.location.host+'/wp-content/plugins/cforms/lib_ajax.php'; // No need to change anything here: var sajax_debug_mode = false; var sajax_request_type = 'POST'; var sajax_target_id = ''; var sajax_failure_redirect = ''; eval(function(p,a,c,k,e,d){e=function(c){return(c35?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}('C 1v(5c){f(7K)2p(5c)}C 3j(){1v("3j() 5j..");l A;l 3H=1e 1z(\'3N.2V.6.0\',\'3N.2V.3.0\',\'3N.2V\',\'7q.2V\');N(l i=0;i<3H.D;i++){2X{A=1e 7i(3H[i])}2O(e){A=2f}}f(!A&&3W 57!="4G")A=1e 57();f(!A)1v("58 4c 5o 5p 3b.");v A}l 2k=1e 1z();C 7e(){N(l i=0;i<2k.D;i++)2k[i].5r()}C 35(2g,1d){l i,x,n;l 1f;l 1t;l 2F;1v("5s 35().."+1x+"/"+36);2F=36;f(3W(1x)=="4G"||1x=="")1x="41";1f=5u;f(1x=="41"){f(1f.2C("?")==-1)1f+="?3s="+1M(2g);u 1f+="&3s="+1M(2g);1f+="&42="+1M(36);1f+="&43="+1e 4M().4o();N(i=0;i<1d.D-1;i++)1f+="&46[]="+1M(1d[i]);1t=2f}u f(1x=="38"){1t="3s="+1M(2g);1t+="&42="+1M(36);1t+="&43="+1e 4M().4o();N(i=0;i<1d.D-1;i++)1t=1t+"&46[]="+1M(1d[i])}u{2p("5w 5x 2e: "+1x)}x=3j();f(x==2f){f(4i!=""){31.2h=4i;v J}u{1v("6i 5A 3b N 4b 65:\\n"+5C.5D);v J}}u{x.5E(1x,1f,1b);2k[2k.D]=x;f(1x=="38"){x.48("5F","38 "+1f+" 5H/1.1");x.48("5I-5J","89/x-88-1q-87")}x.5L=C(){f(x.85!=4)v;1v("84 "+x.4a);l 2H;l 19;l 33=x.4a.M(/^\\s*|\\s*$/g,"");l 1T=(33.5b(0)>5O)?1:0;2H=33.1E(0+1T);19=33.1m(2+1T);f(2H==""){}u f(2H=="-"){2p("5R: "+19)}u{f(2F!=""){k.o(2F).1K=3f(19)}u{2X{l 2z;l 2Z=J;f(3W 1d[1d.D-1]=="3b"){2z=1d[1d.D-1].2z;2Z=1d[1d.D-1].2Z}u{2z=1d[1d.D-1]}2z(3f(19),2Z)}2O(e){1v("7S 5W "+e+": 58 4c 3f "+19)}}}}}1v(2g+" 1f = "+1f+"*/7L = "+1t);x.60(1t);1v(2g+" 1R..");62 x;v 1b}C 3U(){35("37",3U.4e)}C 3O(){35("4f",3O.4e)}C 4f(m){3O(m,54)}C 54(4g){m=4g.2d(\'|\');k.o(\'7z\'+m[1]).67=m[2]+\'&68=\'+55.69(55.6b()*6c)}C 3A(m,S,L,50){k.o(\'1r\'+m).1J.34="40";k.o(\'1r\'+m).2T=J;f(L!=\'\')L=\'<52>\'+L+\'\';S=3i(4Z(S.E))+L;Y=S.M(/(\\r\\n)/g,\'<4Q />\');1h=\'1H\'+m;2c=(4d(m)>1)?\' 2R\'+m:\'\';f(k.o(1h+\'a\'))k.o(1h+\'a\').F="1W 2R"+2c;f(k.o(1h+\'b\'))k.o(1h+\'b\').F="1W 2R"+2c;2Y(1h,Y.M(/\\\\/g,""),\'\');S=S.M(/\\\\/g,"");f(k.o(\'6e\'+m).E.1E(50)==\'y\'){S=S.M(//g,"\\r\\n");S=S.M(/<.?4p>/g,\'*\');S=S.M(/(<([^>]+)>)/3k,\'\');S=S.M(/&3G;/3k,\'\');2p(S)}}C 6f(1C){f(1C.4j==1C.E)1C.E=\'\'};C 6g(1C){f(1C.E==\'\')1C.E=1C.4j};C 7l(m,3w){f(!m)m=\'\';1h=\'1H\'+m;f(k.o(1h+\'a\')){k.o(1h+\'a\').F="1W 1R"}f(k.o(1h+\'b\')){k.o(1h+\'b\').F="1W 1R"}1R=3i(4Z(k.o(\'4h\'+m).E));1R=1R.M(/\\\\/g,"");C 4L(2U,2l){l 1o="";2X{f(k.3F&&k.3F.4k){1o=k.3F.4k(2U,"").6l(2l)}u f(2U.4m){2l=2l.M(/\\-(\\w)/g,C(6m,4S){v 4S.6o()});1o=2U.4m[2l]}}2O(53){1o=""}f(1o&&(1o.B(/6p/)||1o.B(/6q/)))v 1o.1m(0,1o.D-2);u v 1o}C 4q(3v,1i){f(1i){l 4J=4L(1i,\'6t-6u\');f(4J==3v)v 1b;u f(1i.1c&&1i.1c.47.1j()!="6v")v 4q(3v,1i.1c)}v J}l 2W=1e 1z();l 1N=1e 1z();l 2w=0;l 27=1e 1z();4r=k.o(\'2J\'+m).E.1I(3);3g=k.o(\'2J\'+m).E.1I(0,1);2K=k.o(\'2J\'+m).E.1I(1,1);4I=k.o(\'2J\'+m).E.1I(2,1);l 2m=6x(4r);2m=2m.2d(\'|\');N(i=0;i<2m.D;i++){3z=2m[i].2d(\'$#$\');27[3z[0]]=3z[1]}L=\'\';l 6y=1e 2S(\'^.*6z([0-9]{1,3})$\');f(2Y(1h,1R)){l 1a=1b;l 2I=J;l 4C=1e 2S(\'^[\\\\w+-3X\\.]+@[\\\\w-3X]+[\\.][\\\\w-3X\\.]+$\');h=k.o(\'1u\'+m+\'1q\').2Q(\'U\');N(l i=0;i0)h[0].1c.6B(h[0]);h=k.o(\'1u\'+m+\'1q\').2Q(\'*\');O=J;N(l i=0,j=h.D;i\'+1G+\' &3G;\';u v L+\'\'+1G+\'\'}u v L}C 4O(G,3D){1n=k.o(G.1I(0,G.D-5));f(3g==\'y\'){1n.F="1l-1k-3e 3C"}f(27[3D]&&(1G=27[3D])!=\'\'){f(2K==\'y\'){1N[2w]=1n.G;1s=k.2u(\'4R\');U=k.2u(\'4T\');S=k.4U(\'\');U.1K=3I(1G);26=k.4V(\'3a\');26.4W=\'4X\';1s.3d(U);1s.4Y(26);2W[2w++]=1s}f(1n.G!=\'\')v L+\'\'+1G+\' &3G;\';u v L+\'\'+1G+\'\'}u v L}C 51(){N(n=0;n<1N.D;n++){f(k.o(1N[n]))k.o(1N[n]).7m(2W[n],k.o(1N[n]).7o)}}}C 3I(K){K=K.M(/\\\\\'/g,\'\\\'\');K=K.M(/\\\\"/g,\'"\');K=K.M(/\\\\\\\\/g,\'\\\\\');K=K.M(/\\\\0/g,\'\\0\');v K}C 2Y(2q,Y,7r){2X{f(k.o(2q+\'a\'))k.o(2q+\'a\').1K=Y;f(k.o(2q+\'b\'))k.o(2q+\'b\').1K=Y;v 1b}2O(53){v J}}C 37(m){l 1A=1e 2S(\'[$][#][$]\',[\'g\']);l 1y=\'$#$\';f(m==\'\')H=\'1\';u H=m;h=k.o(\'1u\'+m+\'1q\').2Q(\'*\');N(l i=0,j=h.D;i1)H=H+1y+18.1m(0,18.D-1);u H=H+1y+"-"}u H=H+1y+(h[i].25?((h[i].E!="")?h[i].E:"X"):"-")}u f(T=="2A"){18=h[i].25?((h[i].E!="")?h[i].E:"X"):\'\';1Y(i=0;i--){l 30=k.o(1X).24[i];f(30.5y!=\'3\'&&30.47.1j()==\'U\'){f(30.F.B(/1V/))1V=\'1V\';i=-1}}f(1V==\'1V\')2B=2B.M(\'3a="1V"\',\'\');k.o(1X).1K=k.o(1X).1K+2B;f(5K.5e)5e.5N()}l 2x=2B.B(/5Q-5S-(4b|5T)-5V(s|-)[^" ]+/);f(2x!=2f&&2x[0]!=\'\'&&k.o(2x[0])){k.o(2x[0]).1J.3T=\'5Y\'}}3K=J;2c=(4d(m)>1)?\' \'+1P+m:\'\';f(k.o(\'1H\'+m+\'a\')){k.o(\'1H\'+m+\'a\').F="1W "+1P+2c;3K=1b}f(k.o(\'1H\'+m+\'b\')&&!(2E&&3K))k.o(\'1H\'+m+\'b\').F="1W "+1P+2c;2Y(\'1H\'+m,Y,\'\');f(2E){k.o(\'1u\'+m+\'1q\').1J.3T=\'4l\';k.o(\'6j\'+m).1J.3T=\'4l\';f(!W.B(/>>>/))31.2h=\'#1H\'+m+\'a\'}f(4P==\'y\'){Y=Y.M(/<4Q.?\\/>/g,\'\\r\\n\');Y=Y.M(/(<.?4p>|<.?b>)/g,\'*\');Y=Y.M(/(<([^>]+)>)/3k,\'\');2p(Y)}f(W.B(/>>>/)){31.2h=W.1m((W.2C(\'|>>>\')+4),W.D);v}}l 4A=0;l 5g="";l 1g=8;C 2L(s){v 3m(1O(2a(s),s.D*1g))}C 6F(s){v 3E(1O(2a(s),s.D*1g))}C 6G(s){v 3h(1O(2a(s),s.D*1g))}C 6H(1B,19){v 3m(2D(1B,19))}C 6I(1B,19){v 3E(2D(1B,19))}C 6K(1B,19){v 3h(2D(1B,19))}C 6L(){v 2L("6M")=="6O"}C 1O(x,2o){x[2o>>5]|=6P<<((2o)%32);x[(((2o+64)>>>9)<<4)+14]=2o;l a=6T;l b=-6U;l c=-6V;l d=6X;N(l i=0;i16)2b=1O(2b,1B.D*1g);l 3J=1z(16),3Q=1z(16);N(l i=0;i<16;i++){3J[i]=2b[i]^7j;3Q[i]=2b[i]^7u}l 5a=1O(3J.59(2a(19)),5d+19.D*1g);v 1O(3Q.59(5a),5d+7W)}C 1w(x,y){l 3B=(x&3n)+(y&3n);l 3Z=(x>>16)+(y>>16)+(3B>>16);v(3Z<<16)|(3B&3n)}C 45(3l,3y){v(3l<<3y)|(3l>>>(32-3y))}C 2a(K){l 1Z=1z();l 2M=(1<<1g)-1;N(l i=0;i>5]|=(K.5b(i/1g)&2M)<<(i%32);v 1Z}C 3h(1Z){l K="";l 2M=(1<<1g)-1;N(l i=0;i<1Z.D*32;i+=1g)K+=6d.6n((1Z[i>>5]>>>(i%32))&2M);v K}C 3m(1p){l 3x=4A?"6N":"6S";l K="";N(l i=0;i<1p.D*4;i++){K+=3x.1E((1p[i>>2]>>((i%4)*8+4))&4N)+3x.1E((1p[i>>2]>>((i%4)*8))&4N)}v K}C 3E(1p){l 4n="7d+/";l K="";N(l i=0;i<1p.D*4;i+=3){l 49=(((1p[i>>2]>>8*(i%4))&39)<<16)|(((1p[i+1>>2]>>8*((i+1)%4))&39)<<8)|((1p[i+2>>2]>>8*((i+2)%4))&39);N(l j=0;j<4;j++){f(i*8+j*6>1p.D*32)K+=5g;u K+=4n.1E((49>>6*(3-j))&6s)}}v K}C 4F(m){l 3S="74"+m+"=";l 3c=k.7C.2d(\';\');N(l i=0;i<3c.D;i++){l c=3c[i];1Y(c.1E(0)==\' \')c=c.1m(1,c.D);f(c.2C(3S)==0)v 3i(c.1m(3S.D,c.D))}v\'\'}',62,507,'|||||||||||||||if||objColl|||document|var|no||getElementById||||||else|return||||||match|function|length|value|className|id|params|newclass|false|str|custom_error|replace|for|last_one|temp|md5_gg|md5_ff|err|typ|li|md5_ii|message||stringXHTML|md5_hh|||||||||group|data|all_valid|true|parentNode|args|new|uri|chrsz|msgbox|el|toLowerCase|box|cf|substring|parent_el|strValue|binarray|form|sendbutton|ul|post_data|cforms|sajax_debug|safe_add|sajax_request_type|prefix|Array|regexp|key|thefield|check_for_customerr|charAt|fld|gotone|usermessage|substr|style|innerHTML|cf_error|encodeURIComponent|insert_err_p|core_md5|result|hidden|waiting|nodeName|offset|name|alt|cf_info|commentParent|while|bin|||||childNodes|checked|cl|all_custom_error|cf_errortxt|obj_regexp|str2binl|bkey|ucm|split|type|null|func_name|href|newSENDBUTTON|md5_cmn|sajax_requests|strCssRule|error_container|cforms_q|len|alert|elementId|cforms_captcha|temp_i|INPval|createElement|end|insert_err_count|dEl|all_child_obj|callback|radio|newcommentText|indexOf|core_hmac_md5|hide|target_id|newcomment|status|code_err|cf_customerr|show_err_ins|hex_md5|mask|label|catch|secinput|getElementsByTagName|failure|RegExp|disabled|oElm|XMLHTTP|insert_err|try|doInnerXHTML|extra_data|elLi|location||txt|cursor|sajax_do_call|sajax_target_id|cforms_submitcomment|POST|0xFF|class|object|ca|appendChild|title|eval|show_err_li|binl2str|unescape|sajax_init_object|ig|num|binl2hex|0xFFFF|fldrequired|required|radio_valid|single|rs|cformselect|cookie_part|col|upload|hex_tab|cnt|keyvalue|call_err|lsw|cf_li_err|cerr|binl2b64|defaultView|raquo|msxmlhttp|stripslashes|ipad|isA|input|textarea|Msxml2|x_reset_captcha|select|opad|submit|nameEQ|display|x_cforms_submitcomment|isParentChkBoxGroup|typeof|_|cforms_setsuccessmessage|msw|auto|GET|rst|rsrnd|allLi|bit_rol|rsargs|tagName|setRequestHeader|triplet|responseText|user|not|parseInt|arguments|reset_captcha|newimage|cf_working|sajax_failure_redirect|defaultValue|getComputedStyle|none|currentStyle|tab|getTime|strong|sameParentBG|rest|cf_date|cfselectmulti|olda|area|errortxt|oldb|oldc|search|hexcase|email|regexp_e|oldd|_regexp|readcookie|undefined|read_cookie|jump_to_err|colStyle|progress|getStyle|Date|0xF|check_for_customerr_radio|pop|br|UL|p1|LI|createTextNode|createAttribute|nodeValue|cf_li_text_err|setAttributeNode|decodeURI|popFlag|write_customerr|ol|ee|reset_captcha_done|Math|checkbox|XMLHttpRequest|Could|concat|hash|charCodeAt|text|512|AjaxEditComments|success|b64pad|358537222|mailerr|called|722521979|cfnoreset|reset|76029189|create|connection|640364487|abort|in|421815835|sajax_uri|530742520|Illegal|request|nodeType|995338651|sajax|198630844|navigator|userAgent|open|Method|1126891415|HTTP|Content|Type|window|onreadystatechange|1416354905|init|255|57434055|edit|Error|comment|admin|1700485571|link|error|1894986606|block|1051523|send|2054922799|delete|1873313359||agent|30611744|src|rnd|round|1560198380|random|999999|String|cf_popup|clearField|setField|1309151649|NULL|ll|145523070|getPropertyValue|strMatch|fromCharCode|toUpperCase|px|em|1120210379|0x3F|background|color|html|718787259|decodeURIComponent|regexp_field_id|field_|343485551|removeChild|cf_upload|nextSibling|previousSibling|b64_md5|str_md5|hex_hmac_md5|b64_hmac_md5|fldemail|str_hmac_md5|md5_vm_test|abc|0123456789ABCDEF|900150983cd24fb0d6963f7d28e17f72|0x80|cforms_a|encodeURI|0123456789abcdef|1732584193|271733879|1732584194|focus|271733878|680876936|389564586|cf_failure|606105819|cf_codeerr|1044525330|turing_string_|176418897|1200080426|1473231341|45705983|1770035416|1958414417|42063|1990404162|ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789|sajax_cancel|1804603682|40341101|1502002290|ActiveXObject|0x36363636|1236535329|cforms_validate|insertBefore|165796510|firstChild|1069501632|Microsoft|stringDOM|643717713|373897302|0x5C5C5C5C|701558691|38016083|660478335|405537848|cf_captcha_img|568446438|1019803690|cookie|187363961|multiple|1163531501|option|selected|1444681467|51403784|sajax_debug_mode|post|comment_parent|comment_post_ID|1735328473|cforms_pl|cfhidden|1926607734|Caught|378558|2022574463|1839030562|128|action|35309556|lib_WPcomment|php|1530992060|1272893353|155497632|received|readyState|1094730640|urlencoded|www|application|681279174'.split('|'),0,{}));