$(document).ready(function(){

	// remove focus outline on all links when clicked
  $("a").focus(function(){
    $(this).blur();
  })

	// Put zebra striping on tables
	$( function(){
		$("table.zebra tr:even").addClass("even");
		$("table.zebra tr:odd").addClass("odd");
	})
	
})