$(document).ready(function() {
	
	if ($('div.Notification').length) {
		$('h2:not(.no-not)').after('<div class="redirect-n"><p><a href="#Notification">Please read the recent product announcement</a></p></div>');
	}
	
	if ($('table.midtab').length) {
		$('table.midtab tr:nth-child(odd)').addClass('alt');
	}
	
	if($('table.product-list').length) {
		$('table.product-list tr').hover(function() {
			$(this).addClass('alt');
		}, function () {
			$(this).removeClass('alt');
		})
	}
});