$(document).ready(function(){
function() {
	var ua			= navigator.userAgent.toLowerCase();
	var android		= ua.indexOf("android") > -1 && ua.indexOf("mobile");
	var ios			= ua.match(/(iphone|ipod|ipad)/);


if ( $.browser.mozilla == true && $.browser.version < '4' || $.browser.msie == true && $.browser.version <  '8' || android || ios) {
	$('img').each(function() {
	var src = $(this).attr("src").replace(".svg", ".png");
	$(this).attr("src", src);
});
    }
  }
});
