function setUpEditors(){jQuery.fn.fadeIn=function(c,d){return this.animate({opacity:"show"},c,function(){if(jQuery.browser.msie){this.style.removeAttribute("filter")}if(jQuery.isFunction(d)){d()}})};jQuery.fn.fadeOut=function(c,d){return this.animate({opacity:"hide"},c,function(){if(jQuery.browser.msie){this.style.removeAttribute("filter")}if(jQuery.isFunction(d)){d()}})};jQuery.fn.fadeTo=function(c,e,d){return this.animate({opacity:e},c,function(){if(e==1&&jQuery.browser.msie){this.style.removeAttribute("filter")}if(jQuery.isFunction(d)){d()}})};var b=getEditors();var a=0;showNewEditor(b,a);jQuery("#featured-editor").before('<a class="featured-editor-btn" id="featured-editor-prev" href="#">Prev</a><a class="featured-editor-btn" id="featured-editor-next" href="#">Next</a>');jQuery("#featured-editor-prev").live("click",function(){a=switchEditor(b,a,"previous");return false});jQuery("#featured-editor-next").live("click",function(){a=switchEditor(b,a,"next");return false})}function getEditors(){var a=[{name:"Brent Ozar",title:"Editor In Chief",id:1,description:"Editor-in-chief basically means that Brent keeps the pipes unclogged and makes sure the rest of the editors have the tools they need\u00A0in",link:"/wiki/Editors#Brent_Ozar.2C_Editor-in-Chief"},{name:"Denny Cherry",title:"Performance Tuning Editor",id:2,description:"Denny Cherry specializes as a professional Microsoft SQL Server Database Administrator. He has over 9 years of experience working as\u00A0a",link:"/wiki/Editors#Denny_Cherry.2C_Performance_Tuning_Editor"},{name:"Greg Low",title:"Architecture & Configuration Editor",id:3,description:"Greg is an internationally recognised consultant, developer and trainer. He has been working in development since 1978, holds a PhD\u00A0in",link:"/wiki/Editors#Greg_Low.2C_Architecture_.26_Configuration_Editor"},{name:"Jason Massie",title:"Transact SQL Code Library Editor",id:4,description:"Jason has 10 years experience as a DBA and has specialized in performance tuning for the last five. He was recognized by Microsoft as\u00A0a",link:"/wiki/Editors#Jason_Massie.2C_Transact_SQL_Code_Library_Editor"},{name:"Michael Lato",title:"Transact SQL Coding Techniques Editor",id:5,description:"Michael Lato has more than 10 years of experience consulting on various database systems with a special focus in the CRM\u00A0(Customer",link:"/wiki/Editors#Michael_Lato.2C_Transact_SQL_Coding_Techniques_Editor"},{name:"Ron Talmage",title:"T-SQL Coding and Naming Standards Editor",id:6,description:"Ron Talmage is a mentor and co-founder of Solid Quality Mentors. He is a SQL Server MVP, PASS Regional Mentor, and current president of\u00A0the",link:"/wiki/Editors#Ron_Talmage.2C_T-SQL_Coding_and_Naming_Standards_Editor"},{name:"Timothy Ford",title:"Database Administration Editor",id:7,description:"Timothy Ford is a Senior Database Administrator for Spectrum Health Hospital System. He has been working with Microsoft SQL Server in\u00A0the",link:"/wiki/Editors#Timothy_Ford.2C_Database_Administration_Editor"},{name:"Tom LaRock",title:"Monitoring Editor",id:8,description:"Thomas LaRock is a seasoned IT professional with almost a decade of technical and management experience. Currently serving as\u00A0a",link:"/wiki/Editors#Tom_LaRock.2C_Monitoring_Editor"}];return a}function switchEditor(d,a,e){var b=d.length-1;var c=0;if(e=="next"){c=(a==b)?0:a+1}else{c=(a==0)?b:a-1}showNewEditor(d,c,true);return c}function showNewEditor(c,b,a){if(a){jQuery("#featured-editor").fadeTo("fast",0.01,function(){replaceEditor(c,b)});jQuery("#featured-editor").fadeTo("normal",1)}else{replaceEditor(c,b)}}function replaceEditor(b,a){jQuery("#featured-editor").removeClass();jQuery("#featured-editor").addClass("ed"+(a+1));jQuery("#featured-editor .name").text(b[a].name);jQuery("#featured-editor .title").text(b[a].title);jQuery("#featured-editor .description").text(b[a].description+"\u2026");jQuery("#featured-editor .more-link").attr("href",b[a].link)};
