<script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function(){
$("div").one('click', function(){
$(this).delay(1000).animate({ //через секунду выполнится
opacity: 0.4,
left: '+=100px'
}, 500 );
});
});
</script>
<div style="background: red; position: absolute; width: 100px; height: 100px;">ЖМИ СЮДА</div>