I'm working on a site I inherited at work that shows donation progress using progress bars / labels. The majority of the lists will have 9 years in the (e.g. 1990-1999) but the last one has 13 (2000-2012). Because of this, I have a javascript function \[code\]showHiddenBars()\[/code\] which shows / hides the respective elements.On first load, everything displays correctly (2000-2012 is displayed by default) but after hiding them and then showing them, it messes up the layout. From what I can tell via Google Chrome's inspector is that when the \[code\].show()\[/code\] function is used it is adding \[code\]style="display: inline-block"\[/code\] to my span element which houses the label. I am using the \[code\]clip\[/code\] easing effect of jQuery UI with the show and hide functions.How do I prevent .show from adding style="display: inline-block;"Full Javascript: http://pastebin.com/ZmbQqwWFFull HTML: http://pastebin.com/mf6W1ahFExample Site: http://kirsches.us/3000Strong/decadeProgress.htmlThe javascript:\[code\]function showHiddenBars() { "use strict"; //show the bars we aren't using. $('#decade10').show("clip"); $('#decade11').show("clip"); $('#decade12').show("clip"); $('#decade13').show("clip"); $('#decade10label').show("clip"); $('#decade11label').show("clip"); $('#decade12label').show("clip"); $('#decade13label').show("clip"); $('#decade10AmountGiven').show("clip"); $('#decade11AmountGiven').show("clip"); $('#decade12AmountGiven').show("clip"); $('#decade13AmountGiven').show("clip");}function hideHiddenBars() { "use strict"; //hide the bars we aren't using. $('#decade10').hide("clip"); $('#decade11').hide("clip"); $('#decade12').hide("clip"); $('#decade13').hide("clip"); $('#decade10label').hide("clip"); $('#decade11label').hide("clip"); $('#decade12label').hide("clip"); $('#decade13label').hide("clip"); $('#decade10AmountGiven').hide("clip"); $('#decade11AmountGiven').hide("clip"); $('#decade12AmountGiven').hide("clip"); $('#decade13AmountGiven').hide("clip");}\[/code\]The HTML:\[code\]<div id="decadeProgressContainer"> <span class="titleFontNoBorder" id="decade1label">2000</span> <div id="decade1" class="progressBarSpacingTop"></div> <span id="decade1AmountGiven">$130,000</span><br /> <span class="titleFontNoBorder" id="decade2label">2001</span> <div id="decade2" class="progressBarSpacing"></div> <span id="decade2AmountGiven">$130,000</span><br /> <span class="titleFontNoBorder" id="decade3label">2002</span> <div id="decade3" class="progressBarSpacing"></div> <span id="decade3AmountGiven">$130,000</span><br /> <span class="titleFontNoBorder" id="decade4label">2003</span> <div id="decade4" class="progressBarSpacing"></div> <span id="decade4AmountGiven">$130,000</span><br /> <span class="titleFontNoBorder" id="decade5label">2004</span> <div id="decade5" class="progressBarSpacing"></div> <span id="decade5AmountGiven">$130,000</span><br /> <span class="titleFontNoBorder" id="decade6label">2005</span> <div id="decade6" class="progressBarSpacing"></div> <span id="decade6AmountGiven">$130,000</span><br /> <span class="titleFontNoBorder" id="decade7label">2006</span> <div id="decade7" class="progressBarSpacing"></div> <span id="decade7AmountGiven">$130,000</span><br /> <span class="titleFontNoBorder" id="decade8label">2007</span> <div id="decade8" class="progressBarSpacing"></div> <span id="decade8AmountGiven">$130,000</span><br /> <span class="titleFontNoBorder" id="decade9label">2008</span> <div id="decade9" class="progressBarSpacing"></div> <span id="decade9AmountGiven">$130,000</span><br /> <span class="titleFontNoBorder" id="decade10label">2009</span> <div id="decade10" class="progressBarSpacing"></div> <span id="decade10AmountGiven">$130,000</span><br /> <span class="titleFontNoBorder" id="decade11label">2010</span> <div id="decade11" class="progressBarSpacing"></div> <span id="decade11AmountGiven">$130,000</span><br /> <span class="titleFontNoBorder" id="decade12label">2011</span> <div id="decade12" class="progressBarSpacing"></div> <span id="decade12AmountGiven">$130,000</span><br /> <span class="titleFontNoBorder" id="decade13label">2012</span> <div id="decade13" class="progressBarSpacing"></div> <span id="decade13AmountGiven">$130,000</span></div><!--end div #decadeProgressContainer-->\[/code\]