jQuery(window).load(function(){
	//Right Now on FertilityAuthority.com Menu
	 	jQuery('#block-menu-menu-right-now ul li:nth-child(4)').css('clear', 'left');
	 	jQuery('#block-menu-menu-right-now ul li:nth-child(7)').css('clear', 'left');
	 	// Now we need to manipulate the height of the li elements
	 	// because otherwise IE will turn the grid into a staggered mess
	 	// First, get the height of each li so we don't need to look it up
	 	// multiple times.
	 	height1 = jQuery('#block-menu-menu-right-now > .content > ul > li:nth-child(1)').height();
	 	height2 = jQuery('#block-menu-menu-right-now > .content > ul > li:nth-child(2)').height();
	 	height3 = jQuery('#block-menu-menu-right-now > .content > ul > li:nth-child(3)').height();
	 	height4 = jQuery('#block-menu-menu-right-now > .content > ul > li:nth-child(4)').height();
	 	height5 = jQuery('#block-menu-menu-right-now > .content > ul > li:nth-child(5)').height();
	 	height6 = jQuery('#block-menu-menu-right-now > .content > ul > li:nth-child(6)').height();
	 	height7 = jQuery('#block-menu-menu-right-now > .content > ul > li:nth-child(7)').height();
	 	height8 = jQuery('#block-menu-menu-right-now > .content > ul > li:nth-child(8)').height();
	 	height9 = jQuery('#block-menu-menu-right-now > .content > ul > li:nth-child(9)').height();
	 	// Find the max for each row. This is a 3x3 grid,
	 	// so take three elements in turn and get the max.
	 	rowHeight1 = Math.max(height1, height2, height3);
	 	rowHeight2 = Math.max(height4, height5, height6);
	 	rowHeight3 = Math.max(height7, height8, height9);
	 	// Finally, make sure they all have the same height
	 	jQuery('#block-menu-menu-right-now > .content > ul > li:nth-child(1)').css('height', rowHeight1);
		jQuery('#block-menu-menu-right-now > .content > ul > li:nth-child(2)').css('height', rowHeight1);
		jQuery('#block-menu-menu-right-now > .content > ul > li:nth-child(3)').css('height', rowHeight1);
		jQuery('#block-menu-menu-right-now > .content > ul > li:nth-child(4)').css('height', rowHeight2);
		jQuery('#block-menu-menu-right-now > .content > ul > li:nth-child(5)').css('height', rowHeight2);
		jQuery('#block-menu-menu-right-now > .content > ul > li:nth-child(6)').css('height', rowHeight2);
		jQuery('#block-menu-menu-right-now > .content > ul > li:nth-child(7)').css('height', rowHeight3);
		jQuery('#block-menu-menu-right-now > .content > ul > li:nth-child(8)').css('height', rowHeight3);
		jQuery('#block-menu-menu-right-now > .content > ul > li:nth-child(9)').css('height', rowHeight3);
		// Thanks, IE.
		jQuery('.block-statistics .block-inner .content .item-list:nth-child(1)').show();

//closes load function	
}); ;

