This in fact has very little to do with the fact that you passed a numeric string to the jQuery cookie plugin, because even if you'd passed a literal 1, it wouldn't have remained non-string for very long!
Cookie values are stored internally, essentially, as strings. The value goes into HTTP headers and through to the end-user's browser and, as such, are far removed from the Javascript type system.
Fortunately, since Javascript is dynamically-typed, it shouldn't matter. If the value is numeric in representation, you are free to cast it back to a numeric type:
var value = $.cookie('name');
alert(parseInt(value, 10)); // note: specify the radix!
Still, I wouldn't bother, since you're going to be concatenating it straight back into a string:
var $el = $('#main li:eq(' + value + ')');
Or, to make use of efficiency in modern browsers, you can do:
var $el = $('#main li').eq(parseInt(value, 10)); // I recommend this version
There's a clue in the plugin's source:
document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');
and
cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
Cookie name/value pairs are all "strings".