$(function(){
$('#e3').hover(function(){
//setTimeout(function(){$('#e3').animate({"right":"0"},355)}, 400);
$(this).animate({"right":"0"},355);
},function(){
// $(this).animate({"right":"-85px"},355);
setTimeout(function(){$('#e3').animate({"right":"-85px"},355)}, 400);
});
$('#e4').hover(function(){
$(this).animate({"right":"0"},355);
},function(){
$(this).animate({"right":"-85px"},355);
});
});