function isClick(){
var svg = document.getElementById("svgo");
var svdom = svg.contentDocument;
var path = svdom.getElementsByTagName("path");
if(a1=='1'){path[0].setAttribute('fill', 'yellow');}
if(a2=='1'){path[1].setAttribute('fill', 'yellow');}
}
$('#show').click(function(){
$('.svg_cont').show();
isClick();
});