$(document).ready(function () {
  // Build drop shadow divs necessary for IE6/others
  $('div.section')
  	.wrapInner('<div class="middle"><div class="section-content"></div></div>')
  	.prepend('<div class="top"></div>')
  	.append('<div class="bottom"></div>');
  
  // Add the top shadow on the first .section of the content pages (since it has the filigree background already)
  $('#page.content #content-primary div.section div.middle').eq(0).prepend('<div class="nav-shadow"></div>');

  // Navigate to shopping URL in selected option
  $('#shop-by-brand').change(function () {
    window.location = $(this).val();
  });

  // IE Patching
  if ($.browser.msie) {
    $('ul li:last-child').addClass('last-child');
  }
});
