$(function(){
    $("#destaques .item .foto").each(function(i) {
        var id_foto = $(this).attr("id").split("|");

        $(this).flash({
                    'src':'/site/template/008/img/veiculocapa.swf',
                    'width':'150',
                    'height':'87',
                    'allowfullscreen':'false',
                    'allowscriptaccess':'always',
                    'version': '9.0.24',
                    'wmode': 'transparent',
                    'flashvars': {
                        'id': id_foto[0],
                        'idxfoto': id_foto[1]
                    }
        });
    });
});


