$(document).ready(function(){
    $("table.list tr:odd").addClass("odd");
	
	// Mark external links with a class and make sure it pops up
	$('a[@href^="http://"]').filter(function() {
		return this.hostname && this.hostname !== location.hostname;
	}).addClass('external').attr('target', '_blank');
	
	// Links to files need similar treatment
	$('a[@href*="/upload/"]').attr('target', '_blank');
});
