function setUpEditors(){var b=getEditors();var a=0;showNewEditor(b,a);jQuery("a#navFeatEdLeft").click(function(){a=switchEditor(b,a,"previous");return false});jQuery("a#navFeatEdRight").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 in",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 a",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 in",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 a",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 (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 the",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 the",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 a",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("#navFeatEd").fadeTo("fast",0.01,function(){replaceEditor(c,b)});jQuery("#navFeatEd").fadeTo("normal",1)}else{replaceEditor(c,b)}}function replaceEditor(b,a){jQuery("#navFeatEd").removeClass();jQuery("#navFeatEd").addClass("ed"+(a+1));jQuery("#editorName").text(b[a].name);jQuery("#editorTitle").text(b[a].title);jQuery("#editorDesc").text(b[a].description+"...");jQuery("#featEdMore").attr("href",b[a].link)};