(function ($) {
	$(document).ready(function () {

    $('#header .expander').each(function(){
      $(this).find('.content li:first').css('border-top-width','0');

			$content = $(this).find('.content');
			$content.data('height', $content.height());

      $(this).hover(
        function () {
					$content = $(this).find('.content');
					$content
            .stop(1)
            .width($(this).find('.button:first').width()+21)
						.css('height', $content.data('height'))
            .slideDown();
        },
        function () {
          $(this)
            .find('.content')
            .stop(1)
            .slideUp();
        }
      );

    });

	});
})(jQuery);


