$(document).ready(function() {
	$("#pol_decition_map").click(function(){
		showPicture();
	});
});
var show=true;
function showPicture(){
	if(show){
		$("#pol_decition_map").animate({ 
			width: "100%",
			height:"100%",
			
		  }, 1500 );
		show=false;
	
	}else{
		$("#pol_decition_map").animate({ 
			width: "50%",
			height:"50%",
		  }, 1500 );
		show=true;
	}

}
