jQuery(document).ready(function () {  
  $('ul li[class!=active] .dropMenu').hover(function() {
    $($($(this).parent()).children()[0]).css({
      'background': 'url(\'/images/navActiveBg.png\')',
      'color': '#000000'
    });
  },
  function() {
    $($($(this).parent()).children()[0]).css({
      'background': 'url(\'/images/navRegularBg.png\')',
      'color': '#636363'
    });
  });
  
  if($('#leftSidebar').length > 0) {
    $('#leftSidebar').css('height', $('#leftSidebar').parent().css('height'));
  }
});  
