function jTable(table,opts) {
r=1;
bg="background";
jQuery.each($("#"+table+" tr"), function() {
	r=1-r;
	if(r==1) { 
			var alt = opts.stripe;
			$(this).css(bg,alt);
		} else {
			var alt = opts.out;
		}
	$(this).mouseover( function() { $(this).css(bg,opts.over); } );
	$(this).mouseout( function() { $(this).css(bg,alt);} );
    });
}

