кто ж дает имена классов цифрами?
<html>
<head>
<title>example</title>
</head>
<body>
<div>1</div>
<div>2</div>
<div>3</div>
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script>
var div = $('div');
$(div).each(function (i)
{
$(this).addClass('num-' + i);
});
</script>
</body>
</html>