$(function() {

	// Image titling
	$("img").each(function() {
		if (!this.title) {
			this.title = this.alt;
		}
	});
	
	
	// Table striping
	$("table.striped tbody tr:has(td):odd").addClass("odd");
	$("table.striped tbody tr:has(td):even").addClass("even");
	
});
