bytefx
var element = document.getElementById("ratePane");
bytefx.alpha(element,0);
bytefx.fade(element,0,15,.5);
bytefx.fade(element3,100,30,5);
bytefx.move(airportSelDrop,{x:10,y:50},50,function(){alert("moved")});
bytefx.move(airportSelDrop,{x:10,y:-40},100);
********IE ISSUES**************
If you do not call out a div ID within a style sheet - bytefx will work in FF only.
Also - you need to specify a background color (can't be transparent), otherwise the text will get all garbled up in IE only.
***display: inline; also seems to disable in i.e.
Minimum
#testId {
width: 100%;
height: 100%;
background-color: #fff;
}