// JavaScript Document

/*jQuery.fn.equalizeCols = function(){
	var	height = 0;
	return this.css("height","auto").each(function(){
		height = Math.max(height, jQuery(this).outerHeight() ) + 50;}
	).css("height",height);
};

function makeCopyableInIE() {
	document.body.style.height = document.documentElement.scrollHeight + 'px';
};

$().ready(function() {
	$(".col1, .col2, .col3, .col4").equalizeCols();
	makeCopyableInIE();
}); 
*/

    $(document).ready(function() {
      // Only IE6 (and possibly 7, but I don't think so?) should need this script
      $('ul#navigation li.primary ul.secondary').hide();
      $('ul#navigation li.primary').hover(
        function() {
          $('ul.secondary', this).show();
        },
        function() {
          $('ul.secondary', this).hide();
        }
      );
    });
