$(function(){
$('img[src*="svg"]').attr('src', function () {
return $(this).attr('src').replace('.svg', '.png');
});
$('.flag','.flag-drop-down').each(function(){
$(this).attr('style',function()
{
return $(this).attr('style').replace('.svg', '.png');
});
});
});