$(function() {
        $("table.colored tr:even").addClass("stripe1");
		
        $("table.colored tr:odd").addClass("stripe2");
		$("table.colored td:odd").width(50);

        $("table.colored tr").hover(
            function() {
                $(this).toggleClass("highlight");
            },
            function() {
                $(this).toggleClass("highlight");
            }
        );
    });