btw, the js file doesn't seem to work in IE at all because of the indexOf function not being supported! found in several forums the following solution that, when added to the js file makes IE handle it
if(!Array.indexOf){
Array.prototype.indexOf = function(obj){
for(var i=0; i<this.length; i++){
if(this[i]==obj){
return i;
}
}
return -1;
}
}let me know about the "backwardsness" question?
