A. $(".box").mouseover(function(){$(this).css("background","red");});
B. $("
C. box").mouseout(function(){$(this).css("background","red");});
D. $("
E. box").bind("mouseout",function(){$(this).css("background","red");});
F. $(".box").mouseout("bind",function(){$(this).css("background","red");});