$(function() {

	// open external links in a new window
	$("a[href^=http://]").attr("target","_blank");

	// alternate row class for UL.alt
	$("ul.alt li:nth-child(odd)").addClass("odd");
});