var $j = jQuery.noConflict();
jQuery(document).ready(function($){
	// Set alternate rows in tables to a new colour.
	$("tbody tr:even").css("background-color", "#e4f48e");
});
