$(document).ready(function(){
    $('.div_banner').find('h2').hide(1, function(){
        $(this).fadeIn('slow');
        $(this).animate({
            'left':'50px'
        }, 'slow');
    });
});
