/*
jQuery(document).ready(function() {
    // $() will work as an alias for jQuery() inside of this function
    
   // jQuery('.a_prices').addClass("odd");
    //$("tr:even").addClass("even");
    
});
*/


jQuery(document).ready(function($) {

	$('tbody tr:odd').addClass('odd');
	$('tbody tr:even').addClass('even');

});
