$(function() {
    $('#slideout').hover(function() {
    $(this).animate({right:'0px'}, {queue:false, duration: 500});
    }, function() {
        $(this).animate({right:'-420px'}, {queue:false, duration: 500});
    });
});
