function pano2vrSkin(player,skinlayer) {
	var me=this;
	var flag=false;
	this.player=player;
	this.player.skinObj=this;
	this.divSkin=(skinlayer)?skinlayer:player.divSkin;
	this.elementMouseDown=new Array();
	this.elementMouseOver=new Array();
	this.player.setMargins(0,0,0,0);
	this.updateSize=function(startElement) {
		var stack=new Array();
		stack.push(startElement);
		while(stack.length>0) {
			e=stack.pop();
			if (e.ggUpdatePosition) {
				e.ggUpdatePosition();
			}
			if (e.hasChildNodes()) {
				for(i=0;i<e.childNodes.length;i++) {
					stack.push(e.childNodes[i]);
				}
			}
		}
	}
	
	parameterToTransform=function(p) {
		return 'translate(' + p.rx + 'px,' + p.ry + 'px) rotate(' + p.a + 'deg) scale(' + p.sx + ',' + p.sy + ')';
	}
	
	this.findElements=function(id,regex) {
		var r=new Array();
		var stack=new Array();
		var pat=new RegExp(id,'');
		stack.push(me.divSkin);
		while(stack.length>0) {
			e=stack.pop();
			if (regex) {
				if (pat.test(e.ggId)) r.push(e);
			} else {
				if (e.ggId==id) r.push(e);
			}
			if (e.hasChildNodes()) {
				for(i=0;i<e.childNodes.length;i++) {
					stack.push(e.childNodes[i]);
				}
			}
		}
		return r;
	}
	
	this.addSkin=function() {
		this._loading_image=document.createElement('div');
		this._loading_image.ggId='loading image'
		this._loading_image.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._loading_image.ggVisible=true;
		this._loading_image.ggUpdatePosition=function() {
			this.style.webkitTransition='none';
			w=this.parentNode.offsetWidth;
			this.style.left=(-112 + w/2) + 'px';
			h=this.parentNode.offsetHeight;
			this.style.top=(-32 + h/2) + 'px';
		}
		hs ='position:absolute;';
		hs+='left: -112px;';
		hs+='top:  -32px;';
		hs+='width: 224px;';
		hs+='height: 64px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		this._loading_image.setAttribute('style',hs);
		this._loading_image__img=document.createElement('img');
		this._loading_image__img.setAttribute('src','images/loading_image.png');
		this._loading_image__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._loading_image__img);
		this._loading_image.appendChild(this._loading_image__img);
		this._loading_text=document.createElement('div');
		this._loading_text.ggId='loading text'
		this._loading_text.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._loading_text.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 12px;';
		hs+='top:  14px;';
		hs+='width: 198px;';
		hs+='height: 20px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		hs+='border: 0px solid #000000;';
		hs+='color: #000000;';
		hs+='text-align: left;';
		hs+='white-space: nowrap;';
		hs+='padding: 0px 1px 0px 1px;'
		hs+='overflow: hidden;';
		this._loading_text.setAttribute('style',hs);
		this._loading_text.ggUpdateText=function() {
			this.innerHTML="<b>Loading... "+(me.player.getPercentLoaded()*100.0).toFixed(0)+"%<\/b>";
		}
		this._loading_text.ggUpdateText();
		this._loading_image.appendChild(this._loading_text);
		this._loading_bar=document.createElement('div');
		this._loading_bar.ggId='loading bar'
		this._loading_bar.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._loading_bar.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 11px;';
		hs+='top:  39px;';
		hs+='width: 198px;';
		hs+='height: 10px;';
		hs+='-webkit-transform-origin: 0% 50%;';
		hs+='visibility: inherit;';
		hs+='border: 2px solid #000000;';
		hs+='background-color: #4f4f4f;';
		this._loading_bar.setAttribute('style',hs);
		this._loading_image.appendChild(this._loading_bar);
		this._loading_close=document.createElement('div');
		this._loading_close.ggId='loading close'
		this._loading_close.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._loading_close.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 200px;';
		hs+='top:  1px;';
		hs+='width: 24px;';
		hs+='height: 24px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		this._loading_close.setAttribute('style',hs);
		this._loading_close__img=document.createElement('img');
		this._loading_close__img.setAttribute('src','images/loading_close.png');
		this._loading_close__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._loading_close__img);
		this._loading_close.appendChild(this._loading_close__img);
		this._loading_close.onclick=function () {
			me._loading_image.style.webkitTransition='none';
			me._loading_image.style.visibility='hidden';
			me._loading_image.ggVisible=false;
		}
		this._loading_image.appendChild(this._loading_close);
		this.divSkin.appendChild(this._loading_image);
		this._bg=document.createElement('div');
		this._bg.ggId='BG'
		this._bg.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._bg.ggVisible=true;
		this._bg.ggUpdatePosition=function() {
			this.style.webkitTransition='none';
			w=this.parentNode.offsetWidth;
			this.style.left=(-512 + w/2) + 'px';
			h=this.parentNode.offsetHeight;
			this.style.top=(-395 + h/2) + 'px';
		}
		hs ='position:absolute;';
		hs+='left: -512px;';
		hs+='top:  -395px;';
		hs+='width: 1024px;';
		hs+='height: 790px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		this._bg.setAttribute('style',hs);
		this._bg__img=document.createElement('img');
		this._bg__img.setAttribute('src','images/bg.png');
		this._bg__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._bg__img);
		this._bg.appendChild(this._bg__img);
		this._a_bg=document.createElement('div');
		this._a_bg.ggId='A BG'
		this._a_bg.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._a_bg.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 40px;';
		hs+='top:  125px;';
		hs+='width: 586px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		this._a_bg.setAttribute('style',hs);
		this._a_bg__img=document.createElement('img');
		this._a_bg__img.setAttribute('src','images/a_bg.png');
		this._a_bg__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._a_bg__img);
		this._a_bg.appendChild(this._a_bg__img);
		this._bg.appendChild(this._a_bg);
		this._a_leading_edge_curved=document.createElement('div');
		this._a_leading_edge_curved.ggId='A leading Edge Curved'
		this._a_leading_edge_curved.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._a_leading_edge_curved.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 40px;';
		hs+='top:  125px;';
		hs+='width: 586px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._a_leading_edge_curved.setAttribute('style',hs);
		this._a_leading_edge_curved__img=document.createElement('img');
		this._a_leading_edge_curved__img.setAttribute('src','images/a_leading_edge_curved.png');
		this._a_leading_edge_curved__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._a_leading_edge_curved__img);
		this._a_leading_edge_curved.appendChild(this._a_leading_edge_curved__img);
		this._bg.appendChild(this._a_leading_edge_curved);
		this._ind_a_leading_edge_curved=document.createElement('div');
		this._ind_a_leading_edge_curved.ggId='IND A leading Edge Curved'
		this._ind_a_leading_edge_curved.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._ind_a_leading_edge_curved.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 40px;';
		hs+='top:  125px;';
		hs+='width: 586px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._ind_a_leading_edge_curved.setAttribute('style',hs);
		this._ind_a_leading_edge_curved__img=document.createElement('img');
		this._ind_a_leading_edge_curved__img.setAttribute('src','images/ind_a_leading_edge_curved.png');
		this._ind_a_leading_edge_curved__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._ind_a_leading_edge_curved__img);
		this._ind_a_leading_edge_curved.appendChild(this._ind_a_leading_edge_curved__img);
		this._bg.appendChild(this._ind_a_leading_edge_curved);
		this._a_leading_edge_straight=document.createElement('div');
		this._a_leading_edge_straight.ggId='A leading Edge Straight'
		this._a_leading_edge_straight.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._a_leading_edge_straight.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 40px;';
		hs+='top:  125px;';
		hs+='width: 586px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		this._a_leading_edge_straight.setAttribute('style',hs);
		this._a_leading_edge_straight__img=document.createElement('img');
		this._a_leading_edge_straight__img.setAttribute('src','images/a_leading_edge_straight.png');
		this._a_leading_edge_straight__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._a_leading_edge_straight__img);
		this._a_leading_edge_straight.appendChild(this._a_leading_edge_straight__img);
		this._bg.appendChild(this._a_leading_edge_straight);
		this._ind_a_leading_edge_straight_=document.createElement('div');
		this._ind_a_leading_edge_straight_.ggId='IND A leading Edge Straight '
		this._ind_a_leading_edge_straight_.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._ind_a_leading_edge_straight_.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 40px;';
		hs+='top:  125px;';
		hs+='width: 586px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._ind_a_leading_edge_straight_.setAttribute('style',hs);
		this._ind_a_leading_edge_straight___img=document.createElement('img');
		this._ind_a_leading_edge_straight___img.setAttribute('src','images/ind_a_leading_edge_straight_.png');
		this._ind_a_leading_edge_straight___img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._ind_a_leading_edge_straight___img);
		this._ind_a_leading_edge_straight_.appendChild(this._ind_a_leading_edge_straight___img);
		this._bg.appendChild(this._ind_a_leading_edge_straight_);
		this._a_toe_round=document.createElement('div');
		this._a_toe_round.ggId='A Toe Round'
		this._a_toe_round.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._a_toe_round.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 40px;';
		hs+='top:  125px;';
		hs+='width: 586px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._a_toe_round.setAttribute('style',hs);
		this._a_toe_round__img=document.createElement('img');
		this._a_toe_round__img.setAttribute('src','images/a_toe_round.png');
		this._a_toe_round__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._a_toe_round__img);
		this._a_toe_round.appendChild(this._a_toe_round__img);
		this._bg.appendChild(this._a_toe_round);
		this._ind_a_toe_round_=document.createElement('div');
		this._ind_a_toe_round_.ggId='IND A Toe Round '
		this._ind_a_toe_round_.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._ind_a_toe_round_.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 40px;';
		hs+='top:  125px;';
		hs+='width: 586px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._ind_a_toe_round_.setAttribute('style',hs);
		this._ind_a_toe_round___img=document.createElement('img');
		this._ind_a_toe_round___img.setAttribute('src','images/ind_a_toe_round_.png');
		this._ind_a_toe_round___img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._ind_a_toe_round___img);
		this._ind_a_toe_round_.appendChild(this._ind_a_toe_round___img);
		this._bg.appendChild(this._ind_a_toe_round_);
		this._a_toe_square=document.createElement('div');
		this._a_toe_square.ggId='A Toe Square'
		this._a_toe_square.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._a_toe_square.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 40px;';
		hs+='top:  125px;';
		hs+='width: 586px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._a_toe_square.setAttribute('style',hs);
		this._a_toe_square__img=document.createElement('img');
		this._a_toe_square__img.setAttribute('src','images/a_toe_square.png');
		this._a_toe_square__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._a_toe_square__img);
		this._a_toe_square.appendChild(this._a_toe_square__img);
		this._bg.appendChild(this._a_toe_square);
		this._ind_a_toe_square_=document.createElement('div');
		this._ind_a_toe_square_.ggId='IND A Toe Square '
		this._ind_a_toe_square_.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._ind_a_toe_square_.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 40px;';
		hs+='top:  125px;';
		hs+='width: 586px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._ind_a_toe_square_.setAttribute('style',hs);
		this._ind_a_toe_square___img=document.createElement('img');
		this._ind_a_toe_square___img.setAttribute('src','images/ind_a_toe_square_.png');
		this._ind_a_toe_square___img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._ind_a_toe_square___img);
		this._ind_a_toe_square_.appendChild(this._ind_a_toe_square___img);
		this._bg.appendChild(this._ind_a_toe_square_);
		this._a_toe_standard=document.createElement('div');
		this._a_toe_standard.ggId='A Toe Standard'
		this._a_toe_standard.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._a_toe_standard.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 40px;';
		hs+='top:  125px;';
		hs+='width: 586px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		this._a_toe_standard.setAttribute('style',hs);
		this._a_toe_standard__img=document.createElement('img');
		this._a_toe_standard__img.setAttribute('src','images/a_toe_standard.png');
		this._a_toe_standard__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._a_toe_standard__img);
		this._a_toe_standard.appendChild(this._a_toe_standard__img);
		this._bg.appendChild(this._a_toe_standard);
		this._ind_a_toe_standard_=document.createElement('div');
		this._ind_a_toe_standard_.ggId='IND A Toe Standard '
		this._ind_a_toe_standard_.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._ind_a_toe_standard_.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 40px;';
		hs+='top:  125px;';
		hs+='width: 586px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._ind_a_toe_standard_.setAttribute('style',hs);
		this._ind_a_toe_standard___img=document.createElement('img');
		this._ind_a_toe_standard___img.setAttribute('src','images/ind_a_toe_standard_.png');
		this._ind_a_toe_standard___img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._ind_a_toe_standard___img);
		this._ind_a_toe_standard_.appendChild(this._ind_a_toe_standard___img);
		this._bg.appendChild(this._ind_a_toe_standard_);
		this._a_heel_rolled_off=document.createElement('div');
		this._a_heel_rolled_off.ggId='A Heel Rolled Off'
		this._a_heel_rolled_off.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._a_heel_rolled_off.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 40px;';
		hs+='top:  125px;';
		hs+='width: 586px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		this._a_heel_rolled_off.setAttribute('style',hs);
		this._a_heel_rolled_off__img=document.createElement('img');
		this._a_heel_rolled_off__img.setAttribute('src','images/a_heel_rolled_off.png');
		this._a_heel_rolled_off__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._a_heel_rolled_off__img);
		this._a_heel_rolled_off.appendChild(this._a_heel_rolled_off__img);
		this._bg.appendChild(this._a_heel_rolled_off);
		this._ind_a_heel_rolled_off_=document.createElement('div');
		this._ind_a_heel_rolled_off_.ggId='IND A Heel Rolled Off '
		this._ind_a_heel_rolled_off_.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._ind_a_heel_rolled_off_.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 40px;';
		hs+='top:  125px;';
		hs+='width: 586px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._ind_a_heel_rolled_off_.setAttribute('style',hs);
		this._ind_a_heel_rolled_off___img=document.createElement('img');
		this._ind_a_heel_rolled_off___img.setAttribute('src','images/ind_a_heel_rolled_off_.png');
		this._ind_a_heel_rolled_off___img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._ind_a_heel_rolled_off___img);
		this._ind_a_heel_rolled_off_.appendChild(this._ind_a_heel_rolled_off___img);
		this._bg.appendChild(this._ind_a_heel_rolled_off_);
		this._a_heel_sharp=document.createElement('div');
		this._a_heel_sharp.ggId='A Heel Sharp'
		this._a_heel_sharp.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._a_heel_sharp.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 40px;';
		hs+='top:  125px;';
		hs+='width: 586px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._a_heel_sharp.setAttribute('style',hs);
		this._a_heel_sharp__img=document.createElement('img');
		this._a_heel_sharp__img.setAttribute('src','images/a_heel_sharp.png');
		this._a_heel_sharp__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._a_heel_sharp__img);
		this._a_heel_sharp.appendChild(this._a_heel_sharp__img);
		this._bg.appendChild(this._a_heel_sharp);
		this._ind_a_heel_sharp_=document.createElement('div');
		this._ind_a_heel_sharp_.ggId='IND A Heel Sharp '
		this._ind_a_heel_sharp_.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._ind_a_heel_sharp_.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 40px;';
		hs+='top:  125px;';
		hs+='width: 586px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._ind_a_heel_sharp_.setAttribute('style',hs);
		this._ind_a_heel_sharp___img=document.createElement('img');
		this._ind_a_heel_sharp___img.setAttribute('src','images/ind_a_heel_sharp_.png');
		this._ind_a_heel_sharp___img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._ind_a_heel_sharp___img);
		this._ind_a_heel_sharp_.appendChild(this._ind_a_heel_sharp___img);
		this._bg.appendChild(this._ind_a_heel_sharp_);
		this._b_bg=document.createElement('div');
		this._b_bg.ggId='B Bg'
		this._b_bg.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._b_bg.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 725px;';
		hs+='top:  130px;';
		hs+='width: 228px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		this._b_bg.setAttribute('style',hs);
		this._b_bg__img=document.createElement('img');
		this._b_bg__img.setAttribute('src','images/b_bg.png');
		this._b_bg__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._b_bg__img);
		this._b_bg.appendChild(this._b_bg__img);
		this._bg.appendChild(this._b_bg);
		this._b_top_line_standard=document.createElement('div');
		this._b_top_line_standard.ggId='B Top Line Standard'
		this._b_top_line_standard.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._b_top_line_standard.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 725px;';
		hs+='top:  130px;';
		hs+='width: 228px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		this._b_top_line_standard.setAttribute('style',hs);
		this._b_top_line_standard__img=document.createElement('img');
		this._b_top_line_standard__img.setAttribute('src','images/b_top_line_standard.png');
		this._b_top_line_standard__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._b_top_line_standard__img);
		this._b_top_line_standard.appendChild(this._b_top_line_standard__img);
		this._bg.appendChild(this._b_top_line_standard);
		this._ind_b_top_line_standard_=document.createElement('div');
		this._ind_b_top_line_standard_.ggId='IND B Top Line Standard '
		this._ind_b_top_line_standard_.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._ind_b_top_line_standard_.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 725px;';
		hs+='top:  130px;';
		hs+='width: 228px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._ind_b_top_line_standard_.setAttribute('style',hs);
		this._ind_b_top_line_standard___img=document.createElement('img');
		this._ind_b_top_line_standard___img.setAttribute('src','images/ind_b_top_line_standard_.png');
		this._ind_b_top_line_standard___img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._ind_b_top_line_standard___img);
		this._ind_b_top_line_standard_.appendChild(this._ind_b_top_line_standard___img);
		this._bg.appendChild(this._ind_b_top_line_standard_);
		this._b_top_line_thin=document.createElement('div');
		this._b_top_line_thin.ggId='B Top Line Thin'
		this._b_top_line_thin.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._b_top_line_thin.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 725px;';
		hs+='top:  130px;';
		hs+='width: 228px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._b_top_line_thin.setAttribute('style',hs);
		this._b_top_line_thin__img=document.createElement('img');
		this._b_top_line_thin__img.setAttribute('src','images/b_top_line_thin.png');
		this._b_top_line_thin__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._b_top_line_thin__img);
		this._b_top_line_thin.appendChild(this._b_top_line_thin__img);
		this._bg.appendChild(this._b_top_line_thin);
		this._ind_b_top_line_thin_=document.createElement('div');
		this._ind_b_top_line_thin_.ggId='IND B Top Line Thin '
		this._ind_b_top_line_thin_.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._ind_b_top_line_thin_.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 725px;';
		hs+='top:  130px;';
		hs+='width: 228px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._ind_b_top_line_thin_.setAttribute('style',hs);
		this._ind_b_top_line_thin___img=document.createElement('img');
		this._ind_b_top_line_thin___img.setAttribute('src','images/ind_b_top_line_thin_.png');
		this._ind_b_top_line_thin___img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._ind_b_top_line_thin___img);
		this._ind_b_top_line_thin_.appendChild(this._ind_b_top_line_thin___img);
		this._bg.appendChild(this._ind_b_top_line_thin_);
		this._b_top_line_thick=document.createElement('div');
		this._b_top_line_thick.ggId='B Top Line Thick'
		this._b_top_line_thick.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._b_top_line_thick.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 725px;';
		hs+='top:  130px;';
		hs+='width: 228px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._b_top_line_thick.setAttribute('style',hs);
		this._b_top_line_thick__img=document.createElement('img');
		this._b_top_line_thick__img.setAttribute('src','images/b_top_line_thick.png');
		this._b_top_line_thick__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._b_top_line_thick__img);
		this._b_top_line_thick.appendChild(this._b_top_line_thick__img);
		this._bg.appendChild(this._b_top_line_thick);
		this._ind_b_top_line_thick_=document.createElement('div');
		this._ind_b_top_line_thick_.ggId='IND B Top Line Thick '
		this._ind_b_top_line_thick_.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._ind_b_top_line_thick_.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 725px;';
		hs+='top:  130px;';
		hs+='width: 228px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._ind_b_top_line_thick_.setAttribute('style',hs);
		this._ind_b_top_line_thick___img=document.createElement('img');
		this._ind_b_top_line_thick___img.setAttribute('src','images/ind_b_top_line_thick_.png');
		this._ind_b_top_line_thick___img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._ind_b_top_line_thick___img);
		this._ind_b_top_line_thick_.appendChild(this._ind_b_top_line_thick___img);
		this._bg.appendChild(this._ind_b_top_line_thick_);
		this._b_sole_standard=document.createElement('div');
		this._b_sole_standard.ggId='B Sole Standard'
		this._b_sole_standard.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._b_sole_standard.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 725px;';
		hs+='top:  130px;';
		hs+='width: 228px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		this._b_sole_standard.setAttribute('style',hs);
		this._b_sole_standard__img=document.createElement('img');
		this._b_sole_standard__img.setAttribute('src','images/b_sole_standard.png');
		this._b_sole_standard__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._b_sole_standard__img);
		this._b_sole_standard.appendChild(this._b_sole_standard__img);
		this._bg.appendChild(this._b_sole_standard);
		this._ind_b_sole_standard_=document.createElement('div');
		this._ind_b_sole_standard_.ggId='IND B Sole Standard '
		this._ind_b_sole_standard_.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._ind_b_sole_standard_.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 725px;';
		hs+='top:  130px;';
		hs+='width: 228px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._ind_b_sole_standard_.setAttribute('style',hs);
		this._ind_b_sole_standard___img=document.createElement('img');
		this._ind_b_sole_standard___img.setAttribute('src','images/ind_b_sole_standard_.png');
		this._ind_b_sole_standard___img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._ind_b_sole_standard___img);
		this._ind_b_sole_standard_.appendChild(this._ind_b_sole_standard___img);
		this._bg.appendChild(this._ind_b_sole_standard_);
		this._b_sole_slight_camber=document.createElement('div');
		this._b_sole_slight_camber.ggId='B Sole Slight Camber'
		this._b_sole_slight_camber.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._b_sole_slight_camber.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 725px;';
		hs+='top:  130px;';
		hs+='width: 228px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._b_sole_slight_camber.setAttribute('style',hs);
		this._b_sole_slight_camber__img=document.createElement('img');
		this._b_sole_slight_camber__img.setAttribute('src','images/b_sole_slight_camber.png');
		this._b_sole_slight_camber__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._b_sole_slight_camber__img);
		this._b_sole_slight_camber.appendChild(this._b_sole_slight_camber__img);
		this._bg.appendChild(this._b_sole_slight_camber);
		this._ind_b_sole_slight_camber_=document.createElement('div');
		this._ind_b_sole_slight_camber_.ggId='IND B Sole Slight Camber '
		this._ind_b_sole_slight_camber_.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._ind_b_sole_slight_camber_.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 725px;';
		hs+='top:  130px;';
		hs+='width: 228px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._ind_b_sole_slight_camber_.setAttribute('style',hs);
		this._ind_b_sole_slight_camber___img=document.createElement('img');
		this._ind_b_sole_slight_camber___img.setAttribute('src','images/ind_b_sole_slight_camber_.png');
		this._ind_b_sole_slight_camber___img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._ind_b_sole_slight_camber___img);
		this._ind_b_sole_slight_camber_.appendChild(this._ind_b_sole_slight_camber___img);
		this._bg.appendChild(this._ind_b_sole_slight_camber_);
		this._b_sole_slight_flat=document.createElement('div');
		this._b_sole_slight_flat.ggId='B Sole Slight Flat'
		this._b_sole_slight_flat.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._b_sole_slight_flat.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 725px;';
		hs+='top:  130px;';
		hs+='width: 228px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._b_sole_slight_flat.setAttribute('style',hs);
		this._b_sole_slight_flat__img=document.createElement('img');
		this._b_sole_slight_flat__img.setAttribute('src','images/b_sole_slight_flat.png');
		this._b_sole_slight_flat__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._b_sole_slight_flat__img);
		this._b_sole_slight_flat.appendChild(this._b_sole_slight_flat__img);
		this._bg.appendChild(this._b_sole_slight_flat);
		this._ind_b_sole_slight_flat_=document.createElement('div');
		this._ind_b_sole_slight_flat_.ggId='IND B Sole Slight Flat '
		this._ind_b_sole_slight_flat_.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._ind_b_sole_slight_flat_.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 725px;';
		hs+='top:  130px;';
		hs+='width: 228px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._ind_b_sole_slight_flat_.setAttribute('style',hs);
		this._ind_b_sole_slight_flat___img=document.createElement('img');
		this._ind_b_sole_slight_flat___img.setAttribute('src','images/ind_b_sole_slight_flat_.png');
		this._ind_b_sole_slight_flat___img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._ind_b_sole_slight_flat___img);
		this._ind_b_sole_slight_flat_.appendChild(this._ind_b_sole_slight_flat___img);
		this._bg.appendChild(this._ind_b_sole_slight_flat_);
		this._b_sole_4_way_roll=document.createElement('div');
		this._b_sole_4_way_roll.ggId='B Sole 4 Way Roll'
		this._b_sole_4_way_roll.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._b_sole_4_way_roll.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 725px;';
		hs+='top:  130px;';
		hs+='width: 228px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._b_sole_4_way_roll.setAttribute('style',hs);
		this._b_sole_4_way_roll__img=document.createElement('img');
		this._b_sole_4_way_roll__img.setAttribute('src','images/b_sole_4_way_roll.png');
		this._b_sole_4_way_roll__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._b_sole_4_way_roll__img);
		this._b_sole_4_way_roll.appendChild(this._b_sole_4_way_roll__img);
		this._bg.appendChild(this._b_sole_4_way_roll);
		this._ind_b_sole_4_way_roll_=document.createElement('div');
		this._ind_b_sole_4_way_roll_.ggId='IND B Sole 4 Way Roll '
		this._ind_b_sole_4_way_roll_.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._ind_b_sole_4_way_roll_.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 725px;';
		hs+='top:  130px;';
		hs+='width: 228px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._ind_b_sole_4_way_roll_.setAttribute('style',hs);
		this._ind_b_sole_4_way_roll___img=document.createElement('img');
		this._ind_b_sole_4_way_roll___img.setAttribute('src','images/ind_b_sole_4_way_roll_.png');
		this._ind_b_sole_4_way_roll___img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._ind_b_sole_4_way_roll___img);
		this._ind_b_sole_4_way_roll_.appendChild(this._ind_b_sole_4_way_roll___img);
		this._bg.appendChild(this._ind_b_sole_4_way_roll_);
		this._b_le_blend_standard=document.createElement('div');
		this._b_le_blend_standard.ggId='B LE Blend Standard'
		this._b_le_blend_standard.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._b_le_blend_standard.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 725px;';
		hs+='top:  130px;';
		hs+='width: 228px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		this._b_le_blend_standard.setAttribute('style',hs);
		this._b_le_blend_standard__img=document.createElement('img');
		this._b_le_blend_standard__img.setAttribute('src','images/b_le_blend_standard.png');
		this._b_le_blend_standard__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._b_le_blend_standard__img);
		this._b_le_blend_standard.appendChild(this._b_le_blend_standard__img);
		this._bg.appendChild(this._b_le_blend_standard);
		this._ind_b_le_blend_standard_=document.createElement('div');
		this._ind_b_le_blend_standard_.ggId='IND B LE Blend Standard '
		this._ind_b_le_blend_standard_.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._ind_b_le_blend_standard_.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 725px;';
		hs+='top:  130px;';
		hs+='width: 228px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._ind_b_le_blend_standard_.setAttribute('style',hs);
		this._ind_b_le_blend_standard___img=document.createElement('img');
		this._ind_b_le_blend_standard___img.setAttribute('src','images/ind_b_le_blend_standard_.png');
		this._ind_b_le_blend_standard___img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._ind_b_le_blend_standard___img);
		this._ind_b_le_blend_standard_.appendChild(this._ind_b_le_blend_standard___img);
		this._bg.appendChild(this._ind_b_le_blend_standard_);
		this._b_le_blend_rolled=document.createElement('div');
		this._b_le_blend_rolled.ggId='B LE Blend Rolled'
		this._b_le_blend_rolled.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._b_le_blend_rolled.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 725px;';
		hs+='top:  130px;';
		hs+='width: 228px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._b_le_blend_rolled.setAttribute('style',hs);
		this._b_le_blend_rolled__img=document.createElement('img');
		this._b_le_blend_rolled__img.setAttribute('src','images/b_le_blend_rolled.png');
		this._b_le_blend_rolled__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._b_le_blend_rolled__img);
		this._b_le_blend_rolled.appendChild(this._b_le_blend_rolled__img);
		this._bg.appendChild(this._b_le_blend_rolled);
		this._ind_b_le_blend_rolled_=document.createElement('div');
		this._ind_b_le_blend_rolled_.ggId='IND B LE Blend Rolled '
		this._ind_b_le_blend_rolled_.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._ind_b_le_blend_rolled_.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 725px;';
		hs+='top:  130px;';
		hs+='width: 228px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._ind_b_le_blend_rolled_.setAttribute('style',hs);
		this._ind_b_le_blend_rolled___img=document.createElement('img');
		this._ind_b_le_blend_rolled___img.setAttribute('src','images/ind_b_le_blend_rolled_.png');
		this._ind_b_le_blend_rolled___img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._ind_b_le_blend_rolled___img);
		this._ind_b_le_blend_rolled_.appendChild(this._ind_b_le_blend_rolled___img);
		this._bg.appendChild(this._ind_b_le_blend_rolled_);
		this._b_le_blend_killed=document.createElement('div');
		this._b_le_blend_killed.ggId='B LE Blend Killed'
		this._b_le_blend_killed.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._b_le_blend_killed.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 725px;';
		hs+='top:  130px;';
		hs+='width: 228px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._b_le_blend_killed.setAttribute('style',hs);
		this._b_le_blend_killed__img=document.createElement('img');
		this._b_le_blend_killed__img.setAttribute('src','images/b_le_blend_killed.png');
		this._b_le_blend_killed__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._b_le_blend_killed__img);
		this._b_le_blend_killed.appendChild(this._b_le_blend_killed__img);
		this._bg.appendChild(this._b_le_blend_killed);
		this._ind_b_le_blend_killed_=document.createElement('div');
		this._ind_b_le_blend_killed_.ggId='IND B LE Blend Killed '
		this._ind_b_le_blend_killed_.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._ind_b_le_blend_killed_.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 725px;';
		hs+='top:  130px;';
		hs+='width: 228px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._ind_b_le_blend_killed_.setAttribute('style',hs);
		this._ind_b_le_blend_killed___img=document.createElement('img');
		this._ind_b_le_blend_killed___img.setAttribute('src','images/ind_b_le_blend_killed_.png');
		this._ind_b_le_blend_killed___img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._ind_b_le_blend_killed___img);
		this._ind_b_le_blend_killed_.appendChild(this._ind_b_le_blend_killed___img);
		this._bg.appendChild(this._ind_b_le_blend_killed_);
		this._b_le_blend_blunt=document.createElement('div');
		this._b_le_blend_blunt.ggId='B LE Blend Blunt'
		this._b_le_blend_blunt.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._b_le_blend_blunt.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 725px;';
		hs+='top:  130px;';
		hs+='width: 228px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._b_le_blend_blunt.setAttribute('style',hs);
		this._b_le_blend_blunt__img=document.createElement('img');
		this._b_le_blend_blunt__img.setAttribute('src','images/b_le_blend_blunt.png');
		this._b_le_blend_blunt__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._b_le_blend_blunt__img);
		this._b_le_blend_blunt.appendChild(this._b_le_blend_blunt__img);
		this._bg.appendChild(this._b_le_blend_blunt);
		this._ind_b_le_blend_blunt=document.createElement('div');
		this._ind_b_le_blend_blunt.ggId='IND B LE Blend Blunt'
		this._ind_b_le_blend_blunt.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._ind_b_le_blend_blunt.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 725px;';
		hs+='top:  130px;';
		hs+='width: 228px;';
		hs+='height: 320px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._ind_b_le_blend_blunt.setAttribute('style',hs);
		this._ind_b_le_blend_blunt__img=document.createElement('img');
		this._ind_b_le_blend_blunt__img.setAttribute('src','images/ind_b_le_blend_blunt.png');
		this._ind_b_le_blend_blunt__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._ind_b_le_blend_blunt__img);
		this._ind_b_le_blend_blunt.appendChild(this._ind_b_le_blend_blunt__img);
		this._bg.appendChild(this._ind_b_le_blend_blunt);
		this._leading_edge_options_btn=document.createElement('div');
		this._leading_edge_options_btn.ggId='Leading Edge Options BTN'
		this._leading_edge_options_btn.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._leading_edge_options_btn.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 195px;';
		hs+='top:  480px;';
		hs+='width: 148px;';
		hs+='height: 14px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		hs+='cursor: pointer;';
		this._leading_edge_options_btn.setAttribute('style',hs);
		this._leading_edge_options_btn__img=document.createElement('img');
		this._leading_edge_options_btn__img.setAttribute('src','images/leading_edge_options_btn.png');
		this._leading_edge_options_btn__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._leading_edge_options_btn__img);
		this._leading_edge_options_btn.appendChild(this._leading_edge_options_btn__img);
		this._leading_edge_options_btn.onmouseover=function () {
			me._dot_leading_edge.style.webkitTransition='none';
			me._dot_leading_edge.style.visibility='inherit';
			me._dot_leading_edge.ggVisible=true;
		}
		this._leading_edge_options_btn.onmouseout=function () {
			me._dot_leading_edge.style.webkitTransition='none';
			me._dot_leading_edge.style.visibility='hidden';
			me._dot_leading_edge.ggVisible=false;
		}
		this._bg.appendChild(this._leading_edge_options_btn);
		this._leading_edge_curved_text=document.createElement('div');
		this._leading_edge_curved_text.ggId='Leading Edge Curved Text'
		this._leading_edge_curved_text.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._leading_edge_curved_text.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 195px;';
		hs+='top:  555px;';
		hs+='width: 146px;';
		hs+='height: 166px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._leading_edge_curved_text.setAttribute('style',hs);
		this._leading_edge_curved_text__img=document.createElement('img');
		this._leading_edge_curved_text__img.setAttribute('src','images/leading_edge_curved_text.png');
		this._leading_edge_curved_text__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._leading_edge_curved_text__img);
		this._leading_edge_curved_text.appendChild(this._leading_edge_curved_text__img);
		this._bg.appendChild(this._leading_edge_curved_text);
		this._leading_edge_straight_text=document.createElement('div');
		this._leading_edge_straight_text.ggId='Leading Edge Straight Text'
		this._leading_edge_straight_text.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._leading_edge_straight_text.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 195px;';
		hs+='top:  555px;';
		hs+='width: 146px;';
		hs+='height: 166px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._leading_edge_straight_text.setAttribute('style',hs);
		this._leading_edge_straight_text__img=document.createElement('img');
		this._leading_edge_straight_text__img.setAttribute('src','images/leading_edge_straight_text.png');
		this._leading_edge_straight_text__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._leading_edge_straight_text__img);
		this._leading_edge_straight_text.appendChild(this._leading_edge_straight_text__img);
		this._bg.appendChild(this._leading_edge_straight_text);
		this._leading_edge_btn_container=document.createElement('div');
		this._leading_edge_btn_container.ggId='Leading edge Btn Container'
		this._leading_edge_btn_container.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._leading_edge_btn_container.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 195px;';
		hs+='top:  495px;';
		hs+='width: 151px;';
		hs+='height: 51px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		this._leading_edge_btn_container.setAttribute('style',hs);
		this._leading_edge_straight_btn_=document.createElement('div');
		this._leading_edge_straight_btn_.ggId='Leading Edge straight BTN '
		this._leading_edge_straight_btn_.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._leading_edge_straight_btn_.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 0px;';
		hs+='top:  10px;';
		hs+='width: 150px;';
		hs+='height: 20px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		hs+='cursor: pointer;';
		this._leading_edge_straight_btn_.setAttribute('style',hs);
		this._leading_edge_straight_btn___img=document.createElement('img');
		this._leading_edge_straight_btn___img.setAttribute('src','images/leading_edge_straight_btn_.png');
		this._leading_edge_straight_btn___img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._leading_edge_straight_btn___img);
		this._leading_edge_straight_btn_.appendChild(this._leading_edge_straight_btn___img);
		this._leading_edge_straight_btn_.onclick=function () {
			me._a_leading_edge_straight.style.webkitTransition='none';
			me._a_leading_edge_straight.style.visibility='inherit';
			me._a_leading_edge_straight.ggVisible=true;
			me._leading_edge_straight_text.style.webkitTransition='none';
			me._leading_edge_straight_text.style.visibility='inherit';
			me._leading_edge_straight_text.ggVisible=true;
			me._a_leading_edge_curved.style.webkitTransition='none';
			me._a_leading_edge_curved.style.visibility='hidden';
			me._a_leading_edge_curved.ggVisible=false;
			me._leading_edge_curved_text.style.webkitTransition='none';
			me._leading_edge_curved_text.style.visibility='hidden';
			me._leading_edge_curved_text.ggVisible=false;
			me._ind_a_leading_edge_curved.style.webkitTransition='none';
			me._ind_a_leading_edge_curved.style.visibility='hidden';
			me._ind_a_leading_edge_curved.ggVisible=false;
			me._ind_a_heel_rolled_off_.style.webkitTransition='none';
			me._ind_a_heel_rolled_off_.style.visibility='hidden';
			me._ind_a_heel_rolled_off_.ggVisible=false;
			me._ind_a_heel_sharp_.style.webkitTransition='none';
			me._ind_a_heel_sharp_.style.visibility='hidden';
			me._ind_a_heel_sharp_.ggVisible=false;
			me._ind_a_toe_round_.style.webkitTransition='none';
			me._ind_a_toe_round_.style.visibility='hidden';
			me._ind_a_toe_round_.ggVisible=false;
			me._ind_a_toe_square_.style.webkitTransition='none';
			me._ind_a_toe_square_.style.visibility='hidden';
			me._ind_a_toe_square_.ggVisible=false;
			me._ind_a_toe_standard_.style.webkitTransition='none';
			me._ind_a_toe_standard_.style.visibility='hidden';
			me._ind_a_toe_standard_.ggVisible=false;
			me._ind_a_leading_edge_straight_.style.webkitTransition='none';
			me._ind_a_leading_edge_straight_.style.visibility='inherit';
			me._ind_a_leading_edge_straight_.ggVisible=true;
			me._ind_b_le_blend_blunt.style.webkitTransition='none';
			me._ind_b_le_blend_blunt.style.visibility='hidden';
			me._ind_b_le_blend_blunt.ggVisible=false;
			me._ind_b_le_blend_killed_.style.webkitTransition='none';
			me._ind_b_le_blend_killed_.style.visibility='hidden';
			me._ind_b_le_blend_killed_.ggVisible=false;
			me._ind_b_le_blend_rolled_.style.webkitTransition='none';
			me._ind_b_le_blend_rolled_.style.visibility='hidden';
			me._ind_b_le_blend_rolled_.ggVisible=false;
			me._ind_b_le_blend_standard_.style.webkitTransition='none';
			me._ind_b_le_blend_standard_.style.visibility='hidden';
			me._ind_b_le_blend_standard_.ggVisible=false;
			me._ind_b_sole_4_way_roll_.style.webkitTransition='none';
			me._ind_b_sole_4_way_roll_.style.visibility='hidden';
			me._ind_b_sole_4_way_roll_.ggVisible=false;
			me._ind_b_sole_slight_camber_.style.webkitTransition='none';
			me._ind_b_sole_slight_camber_.style.visibility='hidden';
			me._ind_b_sole_slight_camber_.ggVisible=false;
			me._ind_b_sole_slight_flat_.style.webkitTransition='none';
			me._ind_b_sole_slight_flat_.style.visibility='hidden';
			me._ind_b_sole_slight_flat_.ggVisible=false;
			me._ind_b_sole_standard_.style.webkitTransition='none';
			me._ind_b_sole_standard_.style.visibility='hidden';
			me._ind_b_sole_standard_.ggVisible=false;
			me._ind_b_top_line_standard_.style.webkitTransition='none';
			me._ind_b_top_line_standard_.style.visibility='hidden';
			me._ind_b_top_line_standard_.ggVisible=false;
			me._ind_b_top_line_thick_.style.webkitTransition='none';
			me._ind_b_top_line_thick_.style.visibility='hidden';
			me._ind_b_top_line_thick_.ggVisible=false;
			me._ind_b_top_line_thin_.style.webkitTransition='none';
			me._ind_b_top_line_thin_.style.visibility='hidden';
			me._ind_b_top_line_thin_.ggVisible=false;
		}
		this._leading_edge_btn_container.appendChild(this._leading_edge_straight_btn_);
		this._leading_edge_curved_btn_=document.createElement('div');
		this._leading_edge_curved_btn_.ggId='Leading Edge Curved BTN '
		this._leading_edge_curved_btn_.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._leading_edge_curved_btn_.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 0px;';
		hs+='top:  30px;';
		hs+='width: 150px;';
		hs+='height: 20px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		hs+='cursor: pointer;';
		this._leading_edge_curved_btn_.setAttribute('style',hs);
		this._leading_edge_curved_btn___img=document.createElement('img');
		this._leading_edge_curved_btn___img.setAttribute('src','images/leading_edge_curved_btn_.png');
		this._leading_edge_curved_btn___img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._leading_edge_curved_btn___img);
		this._leading_edge_curved_btn_.appendChild(this._leading_edge_curved_btn___img);
		this._leading_edge_curved_btn_.onclick=function () {
			me._a_leading_edge_straight.style.webkitTransition='none';
			me._a_leading_edge_straight.style.visibility='hidden';
			me._a_leading_edge_straight.ggVisible=false;
			me._leading_edge_straight_text.style.webkitTransition='none';
			me._leading_edge_straight_text.style.visibility='hidden';
			me._leading_edge_straight_text.ggVisible=false;
			me._a_leading_edge_curved.style.webkitTransition='none';
			me._a_leading_edge_curved.style.visibility='inherit';
			me._a_leading_edge_curved.ggVisible=true;
			me._leading_edge_curved_text.style.webkitTransition='none';
			me._leading_edge_curved_text.style.visibility='inherit';
			me._leading_edge_curved_text.ggVisible=true;
			me._ind_a_leading_edge_curved.style.webkitTransition='none';
			me._ind_a_leading_edge_curved.style.visibility='inherit';
			me._ind_a_leading_edge_curved.ggVisible=true;
			me._ind_a_heel_rolled_off_.style.webkitTransition='none';
			me._ind_a_heel_rolled_off_.style.visibility='hidden';
			me._ind_a_heel_rolled_off_.ggVisible=false;
			me._ind_a_heel_sharp_.style.webkitTransition='none';
			me._ind_a_heel_sharp_.style.visibility='hidden';
			me._ind_a_heel_sharp_.ggVisible=false;
			me._ind_a_toe_round_.style.webkitTransition='none';
			me._ind_a_toe_round_.style.visibility='hidden';
			me._ind_a_toe_round_.ggVisible=false;
			me._ind_a_toe_square_.style.webkitTransition='none';
			me._ind_a_toe_square_.style.visibility='hidden';
			me._ind_a_toe_square_.ggVisible=false;
			me._ind_a_toe_standard_.style.webkitTransition='none';
			me._ind_a_toe_standard_.style.visibility='hidden';
			me._ind_a_toe_standard_.ggVisible=false;
			me._ind_a_leading_edge_straight_.style.webkitTransition='none';
			me._ind_a_leading_edge_straight_.style.visibility='hidden';
			me._ind_a_leading_edge_straight_.ggVisible=false;
			me._ind_b_le_blend_blunt.style.webkitTransition='none';
			me._ind_b_le_blend_blunt.style.visibility='hidden';
			me._ind_b_le_blend_blunt.ggVisible=false;
			me._ind_b_le_blend_killed_.style.webkitTransition='none';
			me._ind_b_le_blend_killed_.style.visibility='hidden';
			me._ind_b_le_blend_killed_.ggVisible=false;
			me._ind_b_le_blend_rolled_.style.webkitTransition='none';
			me._ind_b_le_blend_rolled_.style.visibility='hidden';
			me._ind_b_le_blend_rolled_.ggVisible=false;
			me._ind_b_le_blend_standard_.style.webkitTransition='none';
			me._ind_b_le_blend_standard_.style.visibility='hidden';
			me._ind_b_le_blend_standard_.ggVisible=false;
			me._ind_b_sole_4_way_roll_.style.webkitTransition='none';
			me._ind_b_sole_4_way_roll_.style.visibility='hidden';
			me._ind_b_sole_4_way_roll_.ggVisible=false;
			me._ind_b_sole_slight_camber_.style.webkitTransition='none';
			me._ind_b_sole_slight_camber_.style.visibility='hidden';
			me._ind_b_sole_slight_camber_.ggVisible=false;
			me._ind_b_sole_slight_flat_.style.webkitTransition='none';
			me._ind_b_sole_slight_flat_.style.visibility='hidden';
			me._ind_b_sole_slight_flat_.ggVisible=false;
			me._ind_b_sole_standard_.style.webkitTransition='none';
			me._ind_b_sole_standard_.style.visibility='hidden';
			me._ind_b_sole_standard_.ggVisible=false;
			me._ind_b_top_line_standard_.style.webkitTransition='none';
			me._ind_b_top_line_standard_.style.visibility='hidden';
			me._ind_b_top_line_standard_.ggVisible=false;
			me._ind_b_top_line_thick_.style.webkitTransition='none';
			me._ind_b_top_line_thick_.style.visibility='hidden';
			me._ind_b_top_line_thick_.ggVisible=false;
			me._ind_b_top_line_thin_.style.webkitTransition='none';
			me._ind_b_top_line_thin_.style.visibility='hidden';
			me._ind_b_top_line_thin_.ggVisible=false;
		}
		this._leading_edge_btn_container.appendChild(this._leading_edge_curved_btn_);
		this._grey_line4=document.createElement('div');
		this._grey_line4.ggId='grey line'
		this._grey_line4.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._grey_line4.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 0px;';
		hs+='top:  50px;';
		hs+='width: 146px;';
		hs+='height: 5px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		this._grey_line4.setAttribute('style',hs);
		this._grey_line4__img=document.createElement('img');
		this._grey_line4__img.setAttribute('src','images/grey_line4.png');
		this._grey_line4__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._grey_line4__img);
		this._grey_line4.appendChild(this._grey_line4__img);
		this._leading_edge_btn_container.appendChild(this._grey_line4);
		this._bg.appendChild(this._leading_edge_btn_container);
		this._toe_options_btn=document.createElement('div');
		this._toe_options_btn.ggId='Toe options BTN'
		this._toe_options_btn.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._toe_options_btn.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 355px;';
		hs+='top:  480px;';
		hs+='width: 148px;';
		hs+='height: 15px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		hs+='cursor: pointer;';
		this._toe_options_btn.setAttribute('style',hs);
		this._toe_options_btn__img=document.createElement('img');
		this._toe_options_btn__img.setAttribute('src','images/toe_options_btn.png');
		this._toe_options_btn__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._toe_options_btn__img);
		this._toe_options_btn.appendChild(this._toe_options_btn__img);
		this._toe_options_btn.onmouseover=function () {
			me._dot_toe.style.webkitTransition='none';
			me._dot_toe.style.visibility='inherit';
			me._dot_toe.ggVisible=true;
		}
		this._toe_options_btn.onmouseout=function () {
			me._dot_toe.style.webkitTransition='none';
			me._dot_toe.style.visibility='hidden';
			me._dot_toe.ggVisible=false;
		}
		this._bg.appendChild(this._toe_options_btn);
		this._toe_standard_text=document.createElement('div');
		this._toe_standard_text.ggId='Toe standard text'
		this._toe_standard_text.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._toe_standard_text.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 355px;';
		hs+='top:  575px;';
		hs+='width: 146px;';
		hs+='height: 155px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._toe_standard_text.setAttribute('style',hs);
		this._toe_standard_text__img=document.createElement('img');
		this._toe_standard_text__img.setAttribute('src','images/toe_standard_text.png');
		this._toe_standard_text__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._toe_standard_text__img);
		this._toe_standard_text.appendChild(this._toe_standard_text__img);
		this._bg.appendChild(this._toe_standard_text);
		this._toe_square_text=document.createElement('div');
		this._toe_square_text.ggId='Toe square text'
		this._toe_square_text.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._toe_square_text.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 355px;';
		hs+='top:  575px;';
		hs+='width: 146px;';
		hs+='height: 167px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._toe_square_text.setAttribute('style',hs);
		this._toe_square_text__img=document.createElement('img');
		this._toe_square_text__img.setAttribute('src','images/toe_square_text.png');
		this._toe_square_text__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._toe_square_text__img);
		this._toe_square_text.appendChild(this._toe_square_text__img);
		this._bg.appendChild(this._toe_square_text);
		this._toe_round_text=document.createElement('div');
		this._toe_round_text.ggId='Toe Round text'
		this._toe_round_text.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._toe_round_text.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 355px;';
		hs+='top:  575px;';
		hs+='width: 146px;';
		hs+='height: 131px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._toe_round_text.setAttribute('style',hs);
		this._toe_round_text__img=document.createElement('img');
		this._toe_round_text__img.setAttribute('src','images/toe_round_text.png');
		this._toe_round_text__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._toe_round_text__img);
		this._toe_round_text.appendChild(this._toe_round_text__img);
		this._bg.appendChild(this._toe_round_text);
		this._toe_btn_container=document.createElement('div');
		this._toe_btn_container.ggId='Toe btn container'
		this._toe_btn_container.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._toe_btn_container.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 355px;';
		hs+='top:  500px;';
		hs+='width: 156px;';
		hs+='height: 83px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		this._toe_btn_container.setAttribute('style',hs);
		this._toe_square_btn=document.createElement('div');
		this._toe_square_btn.ggId='Toe square btn'
		this._toe_square_btn.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._toe_square_btn.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 0px;';
		hs+='top:  45px;';
		hs+='width: 150px;';
		hs+='height: 20px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		hs+='cursor: pointer;';
		this._toe_square_btn.setAttribute('style',hs);
		this._toe_square_btn__img=document.createElement('img');
		this._toe_square_btn__img.setAttribute('src','images/toe_square_btn.png');
		this._toe_square_btn__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._toe_square_btn__img);
		this._toe_square_btn.appendChild(this._toe_square_btn__img);
		this._toe_square_btn.onclick=function () {
			me._a_toe_round.style.webkitTransition='none';
			me._a_toe_round.style.visibility='hidden';
			me._a_toe_round.ggVisible=false;
			me._toe_round_text.style.webkitTransition='none';
			me._toe_round_text.style.visibility='hidden';
			me._toe_round_text.ggVisible=false;
			me._a_toe_square.style.webkitTransition='none';
			me._a_toe_square.style.visibility='inherit';
			me._a_toe_square.ggVisible=true;
			me._toe_square_text.style.webkitTransition='none';
			me._toe_square_text.style.visibility='inherit';
			me._toe_square_text.ggVisible=true;
			me._a_toe_standard.style.webkitTransition='none';
			me._a_toe_standard.style.visibility='hidden';
			me._a_toe_standard.ggVisible=false;
			me._toe_standard_text.style.webkitTransition='none';
			me._toe_standard_text.style.visibility='hidden';
			me._toe_standard_text.ggVisible=false;
			me._ind_b_le_blend_blunt.style.webkitTransition='none';
			me._ind_b_le_blend_blunt.style.visibility='hidden';
			me._ind_b_le_blend_blunt.ggVisible=false;
			me._ind_a_heel_rolled_off_.style.webkitTransition='none';
			me._ind_a_heel_rolled_off_.style.visibility='hidden';
			me._ind_a_heel_rolled_off_.ggVisible=false;
			me._ind_a_heel_sharp_.style.webkitTransition='none';
			me._ind_a_heel_sharp_.style.visibility='hidden';
			me._ind_a_heel_sharp_.ggVisible=false;
			me._ind_a_toe_round_.style.webkitTransition='none';
			me._ind_a_toe_round_.style.visibility='hidden';
			me._ind_a_toe_round_.ggVisible=false;
			me._ind_a_toe_square_.style.webkitTransition='none';
			me._ind_a_toe_square_.style.visibility='inherit';
			me._ind_a_toe_square_.ggVisible=true;
			me._ind_a_toe_standard_.style.webkitTransition='none';
			me._ind_a_toe_standard_.style.visibility='hidden';
			me._ind_a_toe_standard_.ggVisible=false;
			me._ind_a_leading_edge_curved.style.webkitTransition='none';
			me._ind_a_leading_edge_curved.style.visibility='hidden';
			me._ind_a_leading_edge_curved.ggVisible=false;
			me._ind_a_leading_edge_straight_.style.webkitTransition='none';
			me._ind_a_leading_edge_straight_.style.visibility='hidden';
			me._ind_a_leading_edge_straight_.ggVisible=false;
			me._ind_b_le_blend_killed_.style.webkitTransition='none';
			me._ind_b_le_blend_killed_.style.visibility='hidden';
			me._ind_b_le_blend_killed_.ggVisible=false;
			me._ind_b_le_blend_rolled_.style.webkitTransition='none';
			me._ind_b_le_blend_rolled_.style.visibility='hidden';
			me._ind_b_le_blend_rolled_.ggVisible=false;
			me._ind_b_le_blend_standard_.style.webkitTransition='none';
			me._ind_b_le_blend_standard_.style.visibility='hidden';
			me._ind_b_le_blend_standard_.ggVisible=false;
			me._ind_b_sole_4_way_roll_.style.webkitTransition='none';
			me._ind_b_sole_4_way_roll_.style.visibility='hidden';
			me._ind_b_sole_4_way_roll_.ggVisible=false;
			me._ind_b_sole_slight_camber_.style.webkitTransition='none';
			me._ind_b_sole_slight_camber_.style.visibility='hidden';
			me._ind_b_sole_slight_camber_.ggVisible=false;
			me._ind_b_sole_slight_flat_.style.webkitTransition='none';
			me._ind_b_sole_slight_flat_.style.visibility='hidden';
			me._ind_b_sole_slight_flat_.ggVisible=false;
			me._ind_b_sole_standard_.style.webkitTransition='none';
			me._ind_b_sole_standard_.style.visibility='hidden';
			me._ind_b_sole_standard_.ggVisible=false;
			me._ind_b_top_line_standard_.style.webkitTransition='none';
			me._ind_b_top_line_standard_.style.visibility='hidden';
			me._ind_b_top_line_standard_.ggVisible=false;
			me._ind_b_top_line_thick_.style.webkitTransition='none';
			me._ind_b_top_line_thick_.style.visibility='hidden';
			me._ind_b_top_line_thick_.ggVisible=false;
			me._ind_b_top_line_thin_.style.webkitTransition='none';
			me._ind_b_top_line_thin_.style.visibility='hidden';
			me._ind_b_top_line_thin_.ggVisible=false;
		}
		this._toe_btn_container.appendChild(this._toe_square_btn);
		this._toe_round_btn=document.createElement('div');
		this._toe_round_btn.ggId='Toe round btn'
		this._toe_round_btn.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._toe_round_btn.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 0px;';
		hs+='top:  5px;';
		hs+='width: 150px;';
		hs+='height: 20px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		hs+='cursor: pointer;';
		this._toe_round_btn.setAttribute('style',hs);
		this._toe_round_btn__img=document.createElement('img');
		this._toe_round_btn__img.setAttribute('src','images/toe_round_btn.png');
		this._toe_round_btn__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._toe_round_btn__img);
		this._toe_round_btn.appendChild(this._toe_round_btn__img);
		this._toe_round_btn.onclick=function () {
			me._a_toe_round.style.webkitTransition='none';
			me._a_toe_round.style.visibility='inherit';
			me._a_toe_round.ggVisible=true;
			me._toe_round_text.style.webkitTransition='none';
			me._toe_round_text.style.visibility='inherit';
			me._toe_round_text.ggVisible=true;
			me._a_toe_square.style.webkitTransition='none';
			me._a_toe_square.style.visibility='hidden';
			me._a_toe_square.ggVisible=false;
			me._toe_square_text.style.webkitTransition='none';
			me._toe_square_text.style.visibility='hidden';
			me._toe_square_text.ggVisible=false;
			me._a_toe_standard.style.webkitTransition='none';
			me._a_toe_standard.style.visibility='hidden';
			me._a_toe_standard.ggVisible=false;
			me._toe_standard_text.style.webkitTransition='none';
			me._toe_standard_text.style.visibility='hidden';
			me._toe_standard_text.ggVisible=false;
			me._ind_b_le_blend_blunt.style.webkitTransition='none';
			me._ind_b_le_blend_blunt.style.visibility='hidden';
			me._ind_b_le_blend_blunt.ggVisible=false;
			me._ind_a_heel_rolled_off_.style.webkitTransition='none';
			me._ind_a_heel_rolled_off_.style.visibility='hidden';
			me._ind_a_heel_rolled_off_.ggVisible=false;
			me._ind_a_heel_sharp_.style.webkitTransition='none';
			me._ind_a_heel_sharp_.style.visibility='hidden';
			me._ind_a_heel_sharp_.ggVisible=false;
			me._ind_a_toe_round_.style.webkitTransition='none';
			me._ind_a_toe_round_.style.visibility='inherit';
			me._ind_a_toe_round_.ggVisible=true;
			me._ind_a_toe_square_.style.webkitTransition='none';
			me._ind_a_toe_square_.style.visibility='hidden';
			me._ind_a_toe_square_.ggVisible=false;
			me._ind_a_toe_standard_.style.webkitTransition='none';
			me._ind_a_toe_standard_.style.visibility='hidden';
			me._ind_a_toe_standard_.ggVisible=false;
			me._ind_a_leading_edge_curved.style.webkitTransition='none';
			me._ind_a_leading_edge_curved.style.visibility='hidden';
			me._ind_a_leading_edge_curved.ggVisible=false;
			me._ind_a_leading_edge_straight_.style.webkitTransition='none';
			me._ind_a_leading_edge_straight_.style.visibility='hidden';
			me._ind_a_leading_edge_straight_.ggVisible=false;
			me._ind_b_le_blend_killed_.style.webkitTransition='none';
			me._ind_b_le_blend_killed_.style.visibility='hidden';
			me._ind_b_le_blend_killed_.ggVisible=false;
			me._ind_b_le_blend_rolled_.style.webkitTransition='none';
			me._ind_b_le_blend_rolled_.style.visibility='hidden';
			me._ind_b_le_blend_rolled_.ggVisible=false;
			me._ind_b_le_blend_standard_.style.webkitTransition='none';
			me._ind_b_le_blend_standard_.style.visibility='hidden';
			me._ind_b_le_blend_standard_.ggVisible=false;
			me._ind_b_sole_4_way_roll_.style.webkitTransition='none';
			me._ind_b_sole_4_way_roll_.style.visibility='hidden';
			me._ind_b_sole_4_way_roll_.ggVisible=false;
			me._ind_b_sole_slight_camber_.style.webkitTransition='none';
			me._ind_b_sole_slight_camber_.style.visibility='hidden';
			me._ind_b_sole_slight_camber_.ggVisible=false;
			me._ind_b_sole_slight_flat_.style.webkitTransition='none';
			me._ind_b_sole_slight_flat_.style.visibility='hidden';
			me._ind_b_sole_slight_flat_.ggVisible=false;
			me._ind_b_sole_standard_.style.webkitTransition='none';
			me._ind_b_sole_standard_.style.visibility='hidden';
			me._ind_b_sole_standard_.ggVisible=false;
			me._ind_b_top_line_standard_.style.webkitTransition='none';
			me._ind_b_top_line_standard_.style.visibility='hidden';
			me._ind_b_top_line_standard_.ggVisible=false;
			me._ind_b_top_line_thick_.style.webkitTransition='none';
			me._ind_b_top_line_thick_.style.visibility='hidden';
			me._ind_b_top_line_thick_.ggVisible=false;
			me._ind_b_top_line_thin_.style.webkitTransition='none';
			me._ind_b_top_line_thin_.style.visibility='hidden';
			me._ind_b_top_line_thin_.ggVisible=false;
		}
		this._toe_btn_container.appendChild(this._toe_round_btn);
		this._toe_standard_btn=document.createElement('div');
		this._toe_standard_btn.ggId='Toe standard btn'
		this._toe_standard_btn.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._toe_standard_btn.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 0px;';
		hs+='top:  25px;';
		hs+='width: 150px;';
		hs+='height: 20px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		hs+='cursor: pointer;';
		this._toe_standard_btn.setAttribute('style',hs);
		this._toe_standard_btn__img=document.createElement('img');
		this._toe_standard_btn__img.setAttribute('src','images/toe_standard_btn.png');
		this._toe_standard_btn__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._toe_standard_btn__img);
		this._toe_standard_btn.appendChild(this._toe_standard_btn__img);
		this._toe_standard_btn.onclick=function () {
			me._a_toe_round.style.webkitTransition='none';
			me._a_toe_round.style.visibility='hidden';
			me._a_toe_round.ggVisible=false;
			me._toe_round_text.style.webkitTransition='none';
			me._toe_round_text.style.visibility='hidden';
			me._toe_round_text.ggVisible=false;
			me._a_toe_square.style.webkitTransition='none';
			me._a_toe_square.style.visibility='hidden';
			me._a_toe_square.ggVisible=false;
			me._toe_square_text.style.webkitTransition='none';
			me._toe_square_text.style.visibility='hidden';
			me._toe_square_text.ggVisible=false;
			me._a_toe_standard.style.webkitTransition='none';
			me._a_toe_standard.style.visibility='inherit';
			me._a_toe_standard.ggVisible=true;
			me._toe_standard_text.style.webkitTransition='none';
			me._toe_standard_text.style.visibility='inherit';
			me._toe_standard_text.ggVisible=true;
			me._ind_b_le_blend_blunt.style.webkitTransition='none';
			me._ind_b_le_blend_blunt.style.visibility='hidden';
			me._ind_b_le_blend_blunt.ggVisible=false;
			me._ind_a_heel_rolled_off_.style.webkitTransition='none';
			me._ind_a_heel_rolled_off_.style.visibility='hidden';
			me._ind_a_heel_rolled_off_.ggVisible=false;
			me._ind_a_heel_sharp_.style.webkitTransition='none';
			me._ind_a_heel_sharp_.style.visibility='hidden';
			me._ind_a_heel_sharp_.ggVisible=false;
			me._ind_a_toe_round_.style.webkitTransition='none';
			me._ind_a_toe_round_.style.visibility='hidden';
			me._ind_a_toe_round_.ggVisible=false;
			me._ind_a_toe_square_.style.webkitTransition='none';
			me._ind_a_toe_square_.style.visibility='hidden';
			me._ind_a_toe_square_.ggVisible=false;
			me._ind_a_toe_standard_.style.webkitTransition='none';
			me._ind_a_toe_standard_.style.visibility='inherit';
			me._ind_a_toe_standard_.ggVisible=true;
			me._ind_a_leading_edge_curved.style.webkitTransition='none';
			me._ind_a_leading_edge_curved.style.visibility='hidden';
			me._ind_a_leading_edge_curved.ggVisible=false;
			me._ind_a_leading_edge_straight_.style.webkitTransition='none';
			me._ind_a_leading_edge_straight_.style.visibility='hidden';
			me._ind_a_leading_edge_straight_.ggVisible=false;
			me._ind_b_le_blend_killed_.style.webkitTransition='none';
			me._ind_b_le_blend_killed_.style.visibility='hidden';
			me._ind_b_le_blend_killed_.ggVisible=false;
			me._ind_b_le_blend_rolled_.style.webkitTransition='none';
			me._ind_b_le_blend_rolled_.style.visibility='hidden';
			me._ind_b_le_blend_rolled_.ggVisible=false;
			me._ind_b_le_blend_standard_.style.webkitTransition='none';
			me._ind_b_le_blend_standard_.style.visibility='hidden';
			me._ind_b_le_blend_standard_.ggVisible=false;
			me._ind_b_sole_4_way_roll_.style.webkitTransition='none';
			me._ind_b_sole_4_way_roll_.style.visibility='hidden';
			me._ind_b_sole_4_way_roll_.ggVisible=false;
			me._ind_b_sole_slight_camber_.style.webkitTransition='none';
			me._ind_b_sole_slight_camber_.style.visibility='hidden';
			me._ind_b_sole_slight_camber_.ggVisible=false;
			me._ind_b_sole_slight_flat_.style.webkitTransition='none';
			me._ind_b_sole_slight_flat_.style.visibility='hidden';
			me._ind_b_sole_slight_flat_.ggVisible=false;
			me._ind_b_sole_standard_.style.webkitTransition='none';
			me._ind_b_sole_standard_.style.visibility='hidden';
			me._ind_b_sole_standard_.ggVisible=false;
			me._ind_b_top_line_standard_.style.webkitTransition='none';
			me._ind_b_top_line_standard_.style.visibility='hidden';
			me._ind_b_top_line_standard_.ggVisible=false;
			me._ind_b_top_line_thick_.style.webkitTransition='none';
			me._ind_b_top_line_thick_.style.visibility='hidden';
			me._ind_b_top_line_thick_.ggVisible=false;
			me._ind_b_top_line_thin_.style.webkitTransition='none';
			me._ind_b_top_line_thin_.style.visibility='hidden';
			me._ind_b_top_line_thin_.ggVisible=false;
		}
		this._toe_btn_container.appendChild(this._toe_standard_btn);
		this._grey_line3=document.createElement('div');
		this._grey_line3.ggId='grey line'
		this._grey_line3.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._grey_line3.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 0px;';
		hs+='top:  65px;';
		hs+='width: 146px;';
		hs+='height: 5px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		this._grey_line3.setAttribute('style',hs);
		this._grey_line3__img=document.createElement('img');
		this._grey_line3__img.setAttribute('src','images/grey_line3.png');
		this._grey_line3__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._grey_line3__img);
		this._grey_line3.appendChild(this._grey_line3__img);
		this._toe_btn_container.appendChild(this._grey_line3);
		this._bg.appendChild(this._toe_btn_container);
		this._le_blend_options_btn=document.createElement('div');
		this._le_blend_options_btn.ggId='LE blend options BTN'
		this._le_blend_options_btn.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._le_blend_options_btn.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 675px;';
		hs+='top:  465px;';
		hs+='width: 148px;';
		hs+='height: 33px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		hs+='cursor: pointer;';
		this._le_blend_options_btn.setAttribute('style',hs);
		this._le_blend_options_btn__img=document.createElement('img');
		this._le_blend_options_btn__img.setAttribute('src','images/le_blend_options_btn.png');
		this._le_blend_options_btn__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._le_blend_options_btn__img);
		this._le_blend_options_btn.appendChild(this._le_blend_options_btn__img);
		this._le_blend_options_btn.onmouseover=function () {
			me._dot_le_blend.style.webkitTransition='none';
			me._dot_le_blend.style.visibility='inherit';
			me._dot_le_blend.ggVisible=true;
		}
		this._le_blend_options_btn.onmouseout=function () {
			me._dot_le_blend.style.webkitTransition='none';
			me._dot_le_blend.style.visibility='hidden';
			me._dot_le_blend.ggVisible=false;
		}
		this._bg.appendChild(this._le_blend_options_btn);
		this._le_blend_standard_text=document.createElement('div');
		this._le_blend_standard_text.ggId='LE blend standard text'
		this._le_blend_standard_text.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._le_blend_standard_text.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 675px;';
		hs+='top:  595px;';
		hs+='width: 146px;';
		hs+='height: 153px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._le_blend_standard_text.setAttribute('style',hs);
		this._le_blend_standard_text__img=document.createElement('img');
		this._le_blend_standard_text__img.setAttribute('src','images/le_blend_standard_text.png');
		this._le_blend_standard_text__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._le_blend_standard_text__img);
		this._le_blend_standard_text.appendChild(this._le_blend_standard_text__img);
		this._bg.appendChild(this._le_blend_standard_text);
		this._le_blend_killed_text=document.createElement('div');
		this._le_blend_killed_text.ggId='LE blend killed text'
		this._le_blend_killed_text.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._le_blend_killed_text.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 675px;';
		hs+='top:  595px;';
		hs+='width: 146px;';
		hs+='height: 164px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._le_blend_killed_text.setAttribute('style',hs);
		this._le_blend_killed_text__img=document.createElement('img');
		this._le_blend_killed_text__img.setAttribute('src','images/le_blend_killed_text.png');
		this._le_blend_killed_text__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._le_blend_killed_text__img);
		this._le_blend_killed_text.appendChild(this._le_blend_killed_text__img);
		this._bg.appendChild(this._le_blend_killed_text);
		this._le_blend_rolled_text=document.createElement('div');
		this._le_blend_rolled_text.ggId='LE blend rolled text'
		this._le_blend_rolled_text.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._le_blend_rolled_text.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 675px;';
		hs+='top:  595px;';
		hs+='width: 146px;';
		hs+='height: 187px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._le_blend_rolled_text.setAttribute('style',hs);
		this._le_blend_rolled_text__img=document.createElement('img');
		this._le_blend_rolled_text__img.setAttribute('src','images/le_blend_rolled_text.png');
		this._le_blend_rolled_text__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._le_blend_rolled_text__img);
		this._le_blend_rolled_text.appendChild(this._le_blend_rolled_text__img);
		this._bg.appendChild(this._le_blend_rolled_text);
		this._le_blend_blunt_text=document.createElement('div');
		this._le_blend_blunt_text.ggId='LE blend blunt text'
		this._le_blend_blunt_text.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._le_blend_blunt_text.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 675px;';
		hs+='top:  595px;';
		hs+='width: 146px;';
		hs+='height: 144px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._le_blend_blunt_text.setAttribute('style',hs);
		this._le_blend_blunt_text__img=document.createElement('img');
		this._le_blend_blunt_text__img.setAttribute('src','images/le_blend_blunt_text.png');
		this._le_blend_blunt_text__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._le_blend_blunt_text__img);
		this._le_blend_blunt_text.appendChild(this._le_blend_blunt_text__img);
		this._bg.appendChild(this._le_blend_blunt_text);
		this._le_blend_btn_container=document.createElement('div');
		this._le_blend_btn_container.ggId='LE blend btn container'
		this._le_blend_btn_container.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._le_blend_btn_container.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 670px;';
		hs+='top:  505px;';
		hs+='width: 156px;';
		hs+='height: 85px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		this._le_blend_btn_container.setAttribute('style',hs);
		this._grey_line2=document.createElement('div');
		this._grey_line2.ggId='grey line'
		this._grey_line2.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._grey_line2.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 5px;';
		hs+='top:  80px;';
		hs+='width: 146px;';
		hs+='height: 5px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		this._grey_line2.setAttribute('style',hs);
		this._grey_line2__img=document.createElement('img');
		this._grey_line2__img.setAttribute('src','images/grey_line2.png');
		this._grey_line2__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._grey_line2__img);
		this._grey_line2.appendChild(this._grey_line2__img);
		this._le_blend_btn_container.appendChild(this._grey_line2);
		this._le_standard_btn=document.createElement('div');
		this._le_standard_btn.ggId='LE standard btn'
		this._le_standard_btn.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._le_standard_btn.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 5px;';
		hs+='top:  0px;';
		hs+='width: 150px;';
		hs+='height: 20px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		hs+='cursor: pointer;';
		this._le_standard_btn.setAttribute('style',hs);
		this._le_standard_btn__img=document.createElement('img');
		this._le_standard_btn__img.setAttribute('src','images/le_standard_btn.png');
		this._le_standard_btn__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._le_standard_btn__img);
		this._le_standard_btn.appendChild(this._le_standard_btn__img);
		this._le_standard_btn.onclick=function () {
			me._b_le_blend_standard.style.webkitTransition='none';
			me._b_le_blend_standard.style.visibility='inherit';
			me._b_le_blend_standard.ggVisible=true;
			me._le_blend_standard_text.style.webkitTransition='none';
			me._le_blend_standard_text.style.visibility='inherit';
			me._le_blend_standard_text.ggVisible=true;
			me._b_le_blend_blunt.style.webkitTransition='none';
			me._b_le_blend_blunt.style.visibility='hidden';
			me._b_le_blend_blunt.ggVisible=false;
			me._le_blend_blunt_text.style.webkitTransition='none';
			me._le_blend_blunt_text.style.visibility='hidden';
			me._le_blend_blunt_text.ggVisible=false;
			me._b_le_blend_killed.style.webkitTransition='none';
			me._b_le_blend_killed.style.visibility='hidden';
			me._b_le_blend_killed.ggVisible=false;
			me._le_blend_killed_text.style.webkitTransition='none';
			me._le_blend_killed_text.style.visibility='hidden';
			me._le_blend_killed_text.ggVisible=false;
			me._b_le_blend_rolled.style.webkitTransition='none';
			me._b_le_blend_rolled.style.visibility='hidden';
			me._b_le_blend_rolled.ggVisible=false;
			me._le_blend_rolled_text.style.webkitTransition='none';
			me._le_blend_rolled_text.style.visibility='hidden';
			me._le_blend_rolled_text.ggVisible=false;
			me._ind_b_le_blend_blunt.style.webkitTransition='none';
			me._ind_b_le_blend_blunt.style.visibility='hidden';
			me._ind_b_le_blend_blunt.ggVisible=false;
			me._ind_a_heel_rolled_off_.style.webkitTransition='none';
			me._ind_a_heel_rolled_off_.style.visibility='hidden';
			me._ind_a_heel_rolled_off_.ggVisible=false;
			me._ind_a_heel_sharp_.style.webkitTransition='none';
			me._ind_a_heel_sharp_.style.visibility='hidden';
			me._ind_a_heel_sharp_.ggVisible=false;
			me._ind_a_toe_round_.style.webkitTransition='none';
			me._ind_a_toe_round_.style.visibility='hidden';
			me._ind_a_toe_round_.ggVisible=false;
			me._ind_a_toe_square_.style.webkitTransition='none';
			me._ind_a_toe_square_.style.visibility='hidden';
			me._ind_a_toe_square_.ggVisible=false;
			me._ind_a_toe_standard_.style.webkitTransition='none';
			me._ind_a_toe_standard_.style.visibility='hidden';
			me._ind_a_toe_standard_.ggVisible=false;
			me._ind_a_leading_edge_curved.style.webkitTransition='none';
			me._ind_a_leading_edge_curved.style.visibility='hidden';
			me._ind_a_leading_edge_curved.ggVisible=false;
			me._ind_a_leading_edge_straight_.style.webkitTransition='none';
			me._ind_a_leading_edge_straight_.style.visibility='hidden';
			me._ind_a_leading_edge_straight_.ggVisible=false;
			me._ind_b_le_blend_killed_.style.webkitTransition='none';
			me._ind_b_le_blend_killed_.style.visibility='hidden';
			me._ind_b_le_blend_killed_.ggVisible=false;
			me._ind_b_le_blend_rolled_.style.webkitTransition='none';
			me._ind_b_le_blend_rolled_.style.visibility='hidden';
			me._ind_b_le_blend_rolled_.ggVisible=false;
			me._ind_b_le_blend_standard_.style.webkitTransition='none';
			me._ind_b_le_blend_standard_.style.visibility='inherit';
			me._ind_b_le_blend_standard_.ggVisible=true;
			me._ind_b_sole_4_way_roll_.style.webkitTransition='none';
			me._ind_b_sole_4_way_roll_.style.visibility='hidden';
			me._ind_b_sole_4_way_roll_.ggVisible=false;
			me._ind_b_sole_slight_camber_.style.webkitTransition='none';
			me._ind_b_sole_slight_camber_.style.visibility='hidden';
			me._ind_b_sole_slight_camber_.ggVisible=false;
			me._ind_b_sole_slight_flat_.style.webkitTransition='none';
			me._ind_b_sole_slight_flat_.style.visibility='hidden';
			me._ind_b_sole_slight_flat_.ggVisible=false;
			me._ind_b_sole_standard_.style.webkitTransition='none';
			me._ind_b_sole_standard_.style.visibility='hidden';
			me._ind_b_sole_standard_.ggVisible=false;
			me._ind_b_top_line_standard_.style.webkitTransition='none';
			me._ind_b_top_line_standard_.style.visibility='hidden';
			me._ind_b_top_line_standard_.ggVisible=false;
			me._ind_b_top_line_thick_.style.webkitTransition='none';
			me._ind_b_top_line_thick_.style.visibility='hidden';
			me._ind_b_top_line_thick_.ggVisible=false;
			me._ind_b_top_line_thin_.style.webkitTransition='none';
			me._ind_b_top_line_thin_.style.visibility='hidden';
			me._ind_b_top_line_thin_.ggVisible=false;
		}
		this._le_blend_btn_container.appendChild(this._le_standard_btn);
		this._le_killed_btn=document.createElement('div');
		this._le_killed_btn.ggId='LE killed btn'
		this._le_killed_btn.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._le_killed_btn.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 5px;';
		hs+='top:  20px;';
		hs+='width: 150px;';
		hs+='height: 20px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		hs+='cursor: pointer;';
		this._le_killed_btn.setAttribute('style',hs);
		this._le_killed_btn__img=document.createElement('img');
		this._le_killed_btn__img.setAttribute('src','images/le_killed_btn.png');
		this._le_killed_btn__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._le_killed_btn__img);
		this._le_killed_btn.appendChild(this._le_killed_btn__img);
		this._le_killed_btn.onclick=function () {
			me._b_le_blend_standard.style.webkitTransition='none';
			me._b_le_blend_standard.style.visibility='hidden';
			me._b_le_blend_standard.ggVisible=false;
			me._le_blend_standard_text.style.webkitTransition='none';
			me._le_blend_standard_text.style.visibility='hidden';
			me._le_blend_standard_text.ggVisible=false;
			me._b_le_blend_blunt.style.webkitTransition='none';
			me._b_le_blend_blunt.style.visibility='hidden';
			me._b_le_blend_blunt.ggVisible=false;
			me._le_blend_blunt_text.style.webkitTransition='none';
			me._le_blend_blunt_text.style.visibility='hidden';
			me._le_blend_blunt_text.ggVisible=false;
			me._b_le_blend_killed.style.webkitTransition='none';
			me._b_le_blend_killed.style.visibility='inherit';
			me._b_le_blend_killed.ggVisible=true;
			me._le_blend_killed_text.style.webkitTransition='none';
			me._le_blend_killed_text.style.visibility='inherit';
			me._le_blend_killed_text.ggVisible=true;
			me._b_le_blend_rolled.style.webkitTransition='none';
			me._b_le_blend_rolled.style.visibility='hidden';
			me._b_le_blend_rolled.ggVisible=false;
			me._le_blend_rolled_text.style.webkitTransition='none';
			me._le_blend_rolled_text.style.visibility='hidden';
			me._le_blend_rolled_text.ggVisible=false;
			me._ind_b_le_blend_blunt.style.webkitTransition='none';
			me._ind_b_le_blend_blunt.style.visibility='hidden';
			me._ind_b_le_blend_blunt.ggVisible=false;
			me._ind_a_heel_rolled_off_.style.webkitTransition='none';
			me._ind_a_heel_rolled_off_.style.visibility='hidden';
			me._ind_a_heel_rolled_off_.ggVisible=false;
			me._ind_a_heel_sharp_.style.webkitTransition='none';
			me._ind_a_heel_sharp_.style.visibility='hidden';
			me._ind_a_heel_sharp_.ggVisible=false;
			me._ind_a_toe_round_.style.webkitTransition='none';
			me._ind_a_toe_round_.style.visibility='hidden';
			me._ind_a_toe_round_.ggVisible=false;
			me._ind_a_toe_square_.style.webkitTransition='none';
			me._ind_a_toe_square_.style.visibility='hidden';
			me._ind_a_toe_square_.ggVisible=false;
			me._ind_a_toe_standard_.style.webkitTransition='none';
			me._ind_a_toe_standard_.style.visibility='hidden';
			me._ind_a_toe_standard_.ggVisible=false;
			me._ind_a_leading_edge_curved.style.webkitTransition='none';
			me._ind_a_leading_edge_curved.style.visibility='hidden';
			me._ind_a_leading_edge_curved.ggVisible=false;
			me._ind_a_leading_edge_straight_.style.webkitTransition='none';
			me._ind_a_leading_edge_straight_.style.visibility='hidden';
			me._ind_a_leading_edge_straight_.ggVisible=false;
			me._ind_b_le_blend_killed_.style.webkitTransition='none';
			me._ind_b_le_blend_killed_.style.visibility='inherit';
			me._ind_b_le_blend_killed_.ggVisible=true;
			me._ind_b_le_blend_rolled_.style.webkitTransition='none';
			me._ind_b_le_blend_rolled_.style.visibility='hidden';
			me._ind_b_le_blend_rolled_.ggVisible=false;
			me._ind_b_le_blend_standard_.style.webkitTransition='none';
			me._ind_b_le_blend_standard_.style.visibility='hidden';
			me._ind_b_le_blend_standard_.ggVisible=false;
			me._ind_b_sole_4_way_roll_.style.webkitTransition='none';
			me._ind_b_sole_4_way_roll_.style.visibility='hidden';
			me._ind_b_sole_4_way_roll_.ggVisible=false;
			me._ind_b_sole_slight_camber_.style.webkitTransition='none';
			me._ind_b_sole_slight_camber_.style.visibility='hidden';
			me._ind_b_sole_slight_camber_.ggVisible=false;
			me._ind_b_sole_slight_flat_.style.webkitTransition='none';
			me._ind_b_sole_slight_flat_.style.visibility='hidden';
			me._ind_b_sole_slight_flat_.ggVisible=false;
			me._ind_b_sole_standard_.style.webkitTransition='none';
			me._ind_b_sole_standard_.style.visibility='hidden';
			me._ind_b_sole_standard_.ggVisible=false;
			me._ind_b_top_line_standard_.style.webkitTransition='none';
			me._ind_b_top_line_standard_.style.visibility='hidden';
			me._ind_b_top_line_standard_.ggVisible=false;
			me._ind_b_top_line_thick_.style.webkitTransition='none';
			me._ind_b_top_line_thick_.style.visibility='hidden';
			me._ind_b_top_line_thick_.ggVisible=false;
			me._ind_b_top_line_thin_.style.webkitTransition='none';
			me._ind_b_top_line_thin_.style.visibility='hidden';
			me._ind_b_top_line_thin_.ggVisible=false;
		}
		this._le_blend_btn_container.appendChild(this._le_killed_btn);
		this._le_rolled_btn=document.createElement('div');
		this._le_rolled_btn.ggId='LE rolled btn'
		this._le_rolled_btn.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._le_rolled_btn.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 5px;';
		hs+='top:  40px;';
		hs+='width: 150px;';
		hs+='height: 20px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		hs+='cursor: pointer;';
		this._le_rolled_btn.setAttribute('style',hs);
		this._le_rolled_btn__img=document.createElement('img');
		this._le_rolled_btn__img.setAttribute('src','images/le_rolled_btn.png');
		this._le_rolled_btn__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._le_rolled_btn__img);
		this._le_rolled_btn.appendChild(this._le_rolled_btn__img);
		this._le_rolled_btn.onclick=function () {
			me._b_le_blend_standard.style.webkitTransition='none';
			me._b_le_blend_standard.style.visibility='hidden';
			me._b_le_blend_standard.ggVisible=false;
			me._le_blend_standard_text.style.webkitTransition='none';
			me._le_blend_standard_text.style.visibility='hidden';
			me._le_blend_standard_text.ggVisible=false;
			me._b_le_blend_blunt.style.webkitTransition='none';
			me._b_le_blend_blunt.style.visibility='hidden';
			me._b_le_blend_blunt.ggVisible=false;
			me._le_blend_blunt_text.style.webkitTransition='none';
			me._le_blend_blunt_text.style.visibility='hidden';
			me._le_blend_blunt_text.ggVisible=false;
			me._b_le_blend_killed.style.webkitTransition='none';
			me._b_le_blend_killed.style.visibility='hidden';
			me._b_le_blend_killed.ggVisible=false;
			me._le_blend_killed_text.style.webkitTransition='none';
			me._le_blend_killed_text.style.visibility='hidden';
			me._le_blend_killed_text.ggVisible=false;
			me._b_le_blend_rolled.style.webkitTransition='none';
			me._b_le_blend_rolled.style.visibility='inherit';
			me._b_le_blend_rolled.ggVisible=true;
			me._le_blend_rolled_text.style.webkitTransition='none';
			me._le_blend_rolled_text.style.visibility='inherit';
			me._le_blend_rolled_text.ggVisible=true;
			me._ind_b_le_blend_blunt.style.webkitTransition='none';
			me._ind_b_le_blend_blunt.style.visibility='hidden';
			me._ind_b_le_blend_blunt.ggVisible=false;
			me._ind_a_heel_rolled_off_.style.webkitTransition='none';
			me._ind_a_heel_rolled_off_.style.visibility='hidden';
			me._ind_a_heel_rolled_off_.ggVisible=false;
			me._ind_a_heel_sharp_.style.webkitTransition='none';
			me._ind_a_heel_sharp_.style.visibility='hidden';
			me._ind_a_heel_sharp_.ggVisible=false;
			me._ind_a_toe_round_.style.webkitTransition='none';
			me._ind_a_toe_round_.style.visibility='hidden';
			me._ind_a_toe_round_.ggVisible=false;
			me._ind_a_toe_square_.style.webkitTransition='none';
			me._ind_a_toe_square_.style.visibility='hidden';
			me._ind_a_toe_square_.ggVisible=false;
			me._ind_a_toe_standard_.style.webkitTransition='none';
			me._ind_a_toe_standard_.style.visibility='hidden';
			me._ind_a_toe_standard_.ggVisible=false;
			me._ind_a_leading_edge_curved.style.webkitTransition='none';
			me._ind_a_leading_edge_curved.style.visibility='hidden';
			me._ind_a_leading_edge_curved.ggVisible=false;
			me._ind_a_leading_edge_straight_.style.webkitTransition='none';
			me._ind_a_leading_edge_straight_.style.visibility='hidden';
			me._ind_a_leading_edge_straight_.ggVisible=false;
			me._ind_b_le_blend_killed_.style.webkitTransition='none';
			me._ind_b_le_blend_killed_.style.visibility='hidden';
			me._ind_b_le_blend_killed_.ggVisible=false;
			me._ind_b_le_blend_rolled_.style.webkitTransition='none';
			me._ind_b_le_blend_rolled_.style.visibility='inherit';
			me._ind_b_le_blend_rolled_.ggVisible=true;
			me._ind_b_le_blend_standard_.style.webkitTransition='none';
			me._ind_b_le_blend_standard_.style.visibility='hidden';
			me._ind_b_le_blend_standard_.ggVisible=false;
			me._ind_b_sole_4_way_roll_.style.webkitTransition='none';
			me._ind_b_sole_4_way_roll_.style.visibility='hidden';
			me._ind_b_sole_4_way_roll_.ggVisible=false;
			me._ind_b_sole_slight_camber_.style.webkitTransition='none';
			me._ind_b_sole_slight_camber_.style.visibility='hidden';
			me._ind_b_sole_slight_camber_.ggVisible=false;
			me._ind_b_sole_slight_flat_.style.webkitTransition='none';
			me._ind_b_sole_slight_flat_.style.visibility='hidden';
			me._ind_b_sole_slight_flat_.ggVisible=false;
			me._ind_b_sole_standard_.style.webkitTransition='none';
			me._ind_b_sole_standard_.style.visibility='hidden';
			me._ind_b_sole_standard_.ggVisible=false;
			me._ind_b_top_line_standard_.style.webkitTransition='none';
			me._ind_b_top_line_standard_.style.visibility='hidden';
			me._ind_b_top_line_standard_.ggVisible=false;
			me._ind_b_top_line_thick_.style.webkitTransition='none';
			me._ind_b_top_line_thick_.style.visibility='hidden';
			me._ind_b_top_line_thick_.ggVisible=false;
			me._ind_b_top_line_thin_.style.webkitTransition='none';
			me._ind_b_top_line_thin_.style.visibility='hidden';
			me._ind_b_top_line_thin_.ggVisible=false;
		}
		this._le_blend_btn_container.appendChild(this._le_rolled_btn);
		this._le_blunt_btn=document.createElement('div');
		this._le_blunt_btn.ggId='LE blunt btn'
		this._le_blunt_btn.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._le_blunt_btn.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 5px;';
		hs+='top:  60px;';
		hs+='width: 150px;';
		hs+='height: 20px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		hs+='cursor: pointer;';
		this._le_blunt_btn.setAttribute('style',hs);
		this._le_blunt_btn__img=document.createElement('img');
		this._le_blunt_btn__img.setAttribute('src','images/le_blunt_btn.png');
		this._le_blunt_btn__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._le_blunt_btn__img);
		this._le_blunt_btn.appendChild(this._le_blunt_btn__img);
		this._le_blunt_btn.onclick=function () {
			me._b_le_blend_standard.style.webkitTransition='none';
			me._b_le_blend_standard.style.visibility='hidden';
			me._b_le_blend_standard.ggVisible=false;
			me._le_blend_standard_text.style.webkitTransition='none';
			me._le_blend_standard_text.style.visibility='hidden';
			me._le_blend_standard_text.ggVisible=false;
			me._b_le_blend_blunt.style.webkitTransition='none';
			me._b_le_blend_blunt.style.visibility='inherit';
			me._b_le_blend_blunt.ggVisible=true;
			me._le_blend_blunt_text.style.webkitTransition='none';
			me._le_blend_blunt_text.style.visibility='inherit';
			me._le_blend_blunt_text.ggVisible=true;
			me._b_le_blend_killed.style.webkitTransition='none';
			me._b_le_blend_killed.style.visibility='hidden';
			me._b_le_blend_killed.ggVisible=false;
			me._le_blend_killed_text.style.webkitTransition='none';
			me._le_blend_killed_text.style.visibility='hidden';
			me._le_blend_killed_text.ggVisible=false;
			me._b_le_blend_rolled.style.webkitTransition='none';
			me._b_le_blend_rolled.style.visibility='hidden';
			me._b_le_blend_rolled.ggVisible=false;
			me._le_blend_rolled_text.style.webkitTransition='none';
			me._le_blend_rolled_text.style.visibility='hidden';
			me._le_blend_rolled_text.ggVisible=false;
			me._ind_b_le_blend_blunt.style.webkitTransition='none';
			me._ind_b_le_blend_blunt.style.visibility='inherit';
			me._ind_b_le_blend_blunt.ggVisible=true;
			me._ind_a_heel_rolled_off_.style.webkitTransition='none';
			me._ind_a_heel_rolled_off_.style.visibility='hidden';
			me._ind_a_heel_rolled_off_.ggVisible=false;
			me._ind_a_heel_sharp_.style.webkitTransition='none';
			me._ind_a_heel_sharp_.style.visibility='hidden';
			me._ind_a_heel_sharp_.ggVisible=false;
			me._ind_a_toe_round_.style.webkitTransition='none';
			me._ind_a_toe_round_.style.visibility='hidden';
			me._ind_a_toe_round_.ggVisible=false;
			me._ind_a_toe_square_.style.webkitTransition='none';
			me._ind_a_toe_square_.style.visibility='hidden';
			me._ind_a_toe_square_.ggVisible=false;
			me._ind_a_toe_standard_.style.webkitTransition='none';
			me._ind_a_toe_standard_.style.visibility='hidden';
			me._ind_a_toe_standard_.ggVisible=false;
			me._ind_a_leading_edge_curved.style.webkitTransition='none';
			me._ind_a_leading_edge_curved.style.visibility='hidden';
			me._ind_a_leading_edge_curved.ggVisible=false;
			me._ind_a_leading_edge_straight_.style.webkitTransition='none';
			me._ind_a_leading_edge_straight_.style.visibility='hidden';
			me._ind_a_leading_edge_straight_.ggVisible=false;
			me._ind_b_le_blend_killed_.style.webkitTransition='none';
			me._ind_b_le_blend_killed_.style.visibility='hidden';
			me._ind_b_le_blend_killed_.ggVisible=false;
			me._ind_b_le_blend_rolled_.style.webkitTransition='none';
			me._ind_b_le_blend_rolled_.style.visibility='hidden';
			me._ind_b_le_blend_rolled_.ggVisible=false;
			me._ind_b_le_blend_standard_.style.webkitTransition='none';
			me._ind_b_le_blend_standard_.style.visibility='hidden';
			me._ind_b_le_blend_standard_.ggVisible=false;
			me._ind_b_sole_4_way_roll_.style.webkitTransition='none';
			me._ind_b_sole_4_way_roll_.style.visibility='hidden';
			me._ind_b_sole_4_way_roll_.ggVisible=false;
			me._ind_b_sole_slight_camber_.style.webkitTransition='none';
			me._ind_b_sole_slight_camber_.style.visibility='hidden';
			me._ind_b_sole_slight_camber_.ggVisible=false;
			me._ind_b_sole_slight_flat_.style.webkitTransition='none';
			me._ind_b_sole_slight_flat_.style.visibility='hidden';
			me._ind_b_sole_slight_flat_.ggVisible=false;
			me._ind_b_sole_standard_.style.webkitTransition='none';
			me._ind_b_sole_standard_.style.visibility='hidden';
			me._ind_b_sole_standard_.ggVisible=false;
			me._ind_b_top_line_standard_.style.webkitTransition='none';
			me._ind_b_top_line_standard_.style.visibility='hidden';
			me._ind_b_top_line_standard_.ggVisible=false;
			me._ind_b_top_line_thick_.style.webkitTransition='none';
			me._ind_b_top_line_thick_.style.visibility='hidden';
			me._ind_b_top_line_thick_.ggVisible=false;
			me._ind_b_top_line_thin_.style.webkitTransition='none';
			me._ind_b_top_line_thin_.style.visibility='hidden';
			me._ind_b_top_line_thin_.ggVisible=false;
		}
		this._le_blend_btn_container.appendChild(this._le_blunt_btn);
		this._bg.appendChild(this._le_blend_btn_container);
		this._heel_options_btn=document.createElement('div');
		this._heel_options_btn.ggId='Heel Options BTN'
		this._heel_options_btn.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._heel_options_btn.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 30px;';
		hs+='top:  480px;';
		hs+='width: 148px;';
		hs+='height: 15px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		hs+='cursor: pointer;';
		this._heel_options_btn.setAttribute('style',hs);
		this._heel_options_btn__img=document.createElement('img');
		this._heel_options_btn__img.setAttribute('src','images/heel_options_btn.png');
		this._heel_options_btn__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._heel_options_btn__img);
		this._heel_options_btn.appendChild(this._heel_options_btn__img);
		this._heel_options_btn.onmouseover=function () {
			me._dot_heel.style.webkitTransition='none';
			me._dot_heel.style.visibility='inherit';
			me._dot_heel.ggVisible=true;
		}
		this._heel_options_btn.onmouseout=function () {
			me._dot_heel.style.webkitTransition='none';
			me._dot_heel.style.visibility='hidden';
			me._dot_heel.ggVisible=false;
		}
		this._bg.appendChild(this._heel_options_btn);
		this._heel_rolled_off_text=document.createElement('div');
		this._heel_rolled_off_text.ggId='Heel Rolled Off Text'
		this._heel_rolled_off_text.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._heel_rolled_off_text.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 30px;';
		hs+='top:  555px;';
		hs+='width: 146px;';
		hs+='height: 155px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._heel_rolled_off_text.setAttribute('style',hs);
		this._heel_rolled_off_text__img=document.createElement('img');
		this._heel_rolled_off_text__img.setAttribute('src','images/heel_rolled_off_text.png');
		this._heel_rolled_off_text__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._heel_rolled_off_text__img);
		this._heel_rolled_off_text.appendChild(this._heel_rolled_off_text__img);
		this._bg.appendChild(this._heel_rolled_off_text);
		this._heel_sharp_text=document.createElement('div');
		this._heel_sharp_text.ggId='Heel Sharp Text'
		this._heel_sharp_text.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._heel_sharp_text.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 30px;';
		hs+='top:  555px;';
		hs+='width: 146px;';
		hs+='height: 174px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._heel_sharp_text.setAttribute('style',hs);
		this._heel_sharp_text__img=document.createElement('img');
		this._heel_sharp_text__img.setAttribute('src','images/heel_sharp_text.png');
		this._heel_sharp_text__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._heel_sharp_text__img);
		this._heel_sharp_text.appendChild(this._heel_sharp_text__img);
		this._bg.appendChild(this._heel_sharp_text);
		this._heel_btn_container=document.createElement('div');
		this._heel_btn_container.ggId='Heel Btn Container'
		this._heel_btn_container.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._heel_btn_container.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 30px;';
		hs+='top:  495px;';
		hs+='width: 151px;';
		hs+='height: 51px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		this._heel_btn_container.setAttribute('style',hs);
		this._heel_rolled_off_btn=document.createElement('div');
		this._heel_rolled_off_btn.ggId='Heel rolled off btn'
		this._heel_rolled_off_btn.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._heel_rolled_off_btn.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 0px;';
		hs+='top:  30px;';
		hs+='width: 150px;';
		hs+='height: 20px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		hs+='cursor: pointer;';
		this._heel_rolled_off_btn.setAttribute('style',hs);
		this._heel_rolled_off_btn__img=document.createElement('img');
		this._heel_rolled_off_btn__img.setAttribute('src','images/heel_rolled_off_btn.png');
		this._heel_rolled_off_btn__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._heel_rolled_off_btn__img);
		this._heel_rolled_off_btn.appendChild(this._heel_rolled_off_btn__img);
		this._heel_rolled_off_btn.onclick=function () {
			me._a_heel_sharp.style.webkitTransition='none';
			me._a_heel_sharp.style.visibility='hidden';
			me._a_heel_sharp.ggVisible=false;
			me._heel_sharp_text.style.webkitTransition='none';
			me._heel_sharp_text.style.visibility='hidden';
			me._heel_sharp_text.ggVisible=false;
			me._a_heel_rolled_off.style.webkitTransition='none';
			me._a_heel_rolled_off.style.visibility='inherit';
			me._a_heel_rolled_off.ggVisible=true;
			me._heel_rolled_off_text.style.webkitTransition='none';
			me._heel_rolled_off_text.style.visibility='inherit';
			me._heel_rolled_off_text.ggVisible=true;
			me._ind_b_le_blend_blunt.style.webkitTransition='none';
			me._ind_b_le_blend_blunt.style.visibility='hidden';
			me._ind_b_le_blend_blunt.ggVisible=false;
			me._ind_a_heel_rolled_off_.style.webkitTransition='none';
			me._ind_a_heel_rolled_off_.style.visibility='inherit';
			me._ind_a_heel_rolled_off_.ggVisible=true;
			me._ind_a_heel_sharp_.style.webkitTransition='none';
			me._ind_a_heel_sharp_.style.visibility='hidden';
			me._ind_a_heel_sharp_.ggVisible=false;
			me._ind_a_toe_round_.style.webkitTransition='none';
			me._ind_a_toe_round_.style.visibility='hidden';
			me._ind_a_toe_round_.ggVisible=false;
			me._ind_a_toe_square_.style.webkitTransition='none';
			me._ind_a_toe_square_.style.visibility='hidden';
			me._ind_a_toe_square_.ggVisible=false;
			me._ind_a_toe_standard_.style.webkitTransition='none';
			me._ind_a_toe_standard_.style.visibility='hidden';
			me._ind_a_toe_standard_.ggVisible=false;
			me._ind_a_leading_edge_curved.style.webkitTransition='none';
			me._ind_a_leading_edge_curved.style.visibility='hidden';
			me._ind_a_leading_edge_curved.ggVisible=false;
			me._ind_a_leading_edge_straight_.style.webkitTransition='none';
			me._ind_a_leading_edge_straight_.style.visibility='hidden';
			me._ind_a_leading_edge_straight_.ggVisible=false;
			me._ind_b_le_blend_killed_.style.webkitTransition='none';
			me._ind_b_le_blend_killed_.style.visibility='hidden';
			me._ind_b_le_blend_killed_.ggVisible=false;
			me._ind_b_le_blend_rolled_.style.webkitTransition='none';
			me._ind_b_le_blend_rolled_.style.visibility='hidden';
			me._ind_b_le_blend_rolled_.ggVisible=false;
			me._ind_b_le_blend_standard_.style.webkitTransition='none';
			me._ind_b_le_blend_standard_.style.visibility='hidden';
			me._ind_b_le_blend_standard_.ggVisible=false;
			me._ind_b_sole_4_way_roll_.style.webkitTransition='none';
			me._ind_b_sole_4_way_roll_.style.visibility='hidden';
			me._ind_b_sole_4_way_roll_.ggVisible=false;
			me._ind_b_sole_slight_camber_.style.webkitTransition='none';
			me._ind_b_sole_slight_camber_.style.visibility='hidden';
			me._ind_b_sole_slight_camber_.ggVisible=false;
			me._ind_b_sole_slight_flat_.style.webkitTransition='none';
			me._ind_b_sole_slight_flat_.style.visibility='hidden';
			me._ind_b_sole_slight_flat_.ggVisible=false;
			me._ind_b_sole_standard_.style.webkitTransition='none';
			me._ind_b_sole_standard_.style.visibility='hidden';
			me._ind_b_sole_standard_.ggVisible=false;
			me._ind_b_top_line_standard_.style.webkitTransition='none';
			me._ind_b_top_line_standard_.style.visibility='hidden';
			me._ind_b_top_line_standard_.ggVisible=false;
			me._ind_b_top_line_thick_.style.webkitTransition='none';
			me._ind_b_top_line_thick_.style.visibility='hidden';
			me._ind_b_top_line_thick_.ggVisible=false;
			me._ind_b_top_line_thin_.style.webkitTransition='none';
			me._ind_b_top_line_thin_.style.visibility='hidden';
			me._ind_b_top_line_thin_.ggVisible=false;
		}
		this._heel_btn_container.appendChild(this._heel_rolled_off_btn);
		this._heel_sharp_btn=document.createElement('div');
		this._heel_sharp_btn.ggId='Heel Sharp btn'
		this._heel_sharp_btn.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._heel_sharp_btn.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 0px;';
		hs+='top:  10px;';
		hs+='width: 150px;';
		hs+='height: 20px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		hs+='cursor: pointer;';
		this._heel_sharp_btn.setAttribute('style',hs);
		this._heel_sharp_btn__img=document.createElement('img');
		this._heel_sharp_btn__img.setAttribute('src','images/heel_sharp_btn.png');
		this._heel_sharp_btn__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._heel_sharp_btn__img);
		this._heel_sharp_btn.appendChild(this._heel_sharp_btn__img);
		this._heel_sharp_btn.onclick=function () {
			me._a_heel_sharp.style.webkitTransition='none';
			me._a_heel_sharp.style.visibility='inherit';
			me._a_heel_sharp.ggVisible=true;
			me._heel_sharp_text.style.webkitTransition='none';
			me._heel_sharp_text.style.visibility='inherit';
			me._heel_sharp_text.ggVisible=true;
			me._a_heel_rolled_off.style.webkitTransition='none';
			me._a_heel_rolled_off.style.visibility='hidden';
			me._a_heel_rolled_off.ggVisible=false;
			me._heel_rolled_off_text.style.webkitTransition='none';
			me._heel_rolled_off_text.style.visibility='hidden';
			me._heel_rolled_off_text.ggVisible=false;
			me._ind_b_le_blend_blunt.style.webkitTransition='none';
			me._ind_b_le_blend_blunt.style.visibility='hidden';
			me._ind_b_le_blend_blunt.ggVisible=false;
			me._ind_a_heel_rolled_off_.style.webkitTransition='none';
			me._ind_a_heel_rolled_off_.style.visibility='hidden';
			me._ind_a_heel_rolled_off_.ggVisible=false;
			me._ind_a_heel_sharp_.style.webkitTransition='none';
			me._ind_a_heel_sharp_.style.visibility='inherit';
			me._ind_a_heel_sharp_.ggVisible=true;
			me._ind_a_toe_round_.style.webkitTransition='none';
			me._ind_a_toe_round_.style.visibility='hidden';
			me._ind_a_toe_round_.ggVisible=false;
			me._ind_a_toe_square_.style.webkitTransition='none';
			me._ind_a_toe_square_.style.visibility='hidden';
			me._ind_a_toe_square_.ggVisible=false;
			me._ind_a_toe_standard_.style.webkitTransition='none';
			me._ind_a_toe_standard_.style.visibility='hidden';
			me._ind_a_toe_standard_.ggVisible=false;
			me._ind_a_leading_edge_curved.style.webkitTransition='none';
			me._ind_a_leading_edge_curved.style.visibility='hidden';
			me._ind_a_leading_edge_curved.ggVisible=false;
			me._ind_a_leading_edge_straight_.style.webkitTransition='none';
			me._ind_a_leading_edge_straight_.style.visibility='hidden';
			me._ind_a_leading_edge_straight_.ggVisible=false;
			me._ind_b_le_blend_killed_.style.webkitTransition='none';
			me._ind_b_le_blend_killed_.style.visibility='hidden';
			me._ind_b_le_blend_killed_.ggVisible=false;
			me._ind_b_le_blend_rolled_.style.webkitTransition='none';
			me._ind_b_le_blend_rolled_.style.visibility='hidden';
			me._ind_b_le_blend_rolled_.ggVisible=false;
			me._ind_b_le_blend_standard_.style.webkitTransition='none';
			me._ind_b_le_blend_standard_.style.visibility='hidden';
			me._ind_b_le_blend_standard_.ggVisible=false;
			me._ind_b_sole_4_way_roll_.style.webkitTransition='none';
			me._ind_b_sole_4_way_roll_.style.visibility='hidden';
			me._ind_b_sole_4_way_roll_.ggVisible=false;
			me._ind_b_sole_slight_camber_.style.webkitTransition='none';
			me._ind_b_sole_slight_camber_.style.visibility='hidden';
			me._ind_b_sole_slight_camber_.ggVisible=false;
			me._ind_b_sole_slight_flat_.style.webkitTransition='none';
			me._ind_b_sole_slight_flat_.style.visibility='hidden';
			me._ind_b_sole_slight_flat_.ggVisible=false;
			me._ind_b_sole_standard_.style.webkitTransition='none';
			me._ind_b_sole_standard_.style.visibility='hidden';
			me._ind_b_sole_standard_.ggVisible=false;
			me._ind_b_top_line_standard_.style.webkitTransition='none';
			me._ind_b_top_line_standard_.style.visibility='hidden';
			me._ind_b_top_line_standard_.ggVisible=false;
			me._ind_b_top_line_thick_.style.webkitTransition='none';
			me._ind_b_top_line_thick_.style.visibility='hidden';
			me._ind_b_top_line_thick_.ggVisible=false;
			me._ind_b_top_line_thin_.style.webkitTransition='none';
			me._ind_b_top_line_thin_.style.visibility='hidden';
			me._ind_b_top_line_thin_.ggVisible=false;
		}
		this._heel_btn_container.appendChild(this._heel_sharp_btn);
		this._grey_line1=document.createElement('div');
		this._grey_line1.ggId='grey line'
		this._grey_line1.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._grey_line1.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 0px;';
		hs+='top:  50px;';
		hs+='width: 146px;';
		hs+='height: 5px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		this._grey_line1.setAttribute('style',hs);
		this._grey_line1__img=document.createElement('img');
		this._grey_line1__img.setAttribute('src','images/grey_line1.png');
		this._grey_line1__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._grey_line1__img);
		this._grey_line1.appendChild(this._grey_line1__img);
		this._heel_btn_container.appendChild(this._grey_line1);
		this._bg.appendChild(this._heel_btn_container);
		this._sole_shape_options_btn=document.createElement('div');
		this._sole_shape_options_btn.ggId='Sole shape options BTN'
		this._sole_shape_options_btn.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._sole_shape_options_btn.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 840px;';
		hs+='top:  480px;';
		hs+='width: 148px;';
		hs+='height: 15px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		hs+='cursor: pointer;';
		this._sole_shape_options_btn.setAttribute('style',hs);
		this._sole_shape_options_btn__img=document.createElement('img');
		this._sole_shape_options_btn__img.setAttribute('src','images/sole_shape_options_btn.png');
		this._sole_shape_options_btn__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._sole_shape_options_btn__img);
		this._sole_shape_options_btn.appendChild(this._sole_shape_options_btn__img);
		this._sole_shape_options_btn.onmouseover=function () {
			me._dot_sole_shape.style.webkitTransition='none';
			me._dot_sole_shape.style.visibility='inherit';
			me._dot_sole_shape.ggVisible=true;
		}
		this._sole_shape_options_btn.onmouseout=function () {
			me._dot_sole_shape.style.webkitTransition='none';
			me._dot_sole_shape.style.visibility='hidden';
			me._dot_sole_shape.ggVisible=false;
		}
		this._bg.appendChild(this._sole_shape_options_btn);
		this._sole_flat_text=document.createElement('div');
		this._sole_flat_text.ggId='Sole flat text'
		this._sole_flat_text.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._sole_flat_text.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 840px;';
		hs+='top:  595px;';
		hs+='width: 146px;';
		hs+='height: 176px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._sole_flat_text.setAttribute('style',hs);
		this._sole_flat_text__img=document.createElement('img');
		this._sole_flat_text__img.setAttribute('src','images/sole_flat_text.png');
		this._sole_flat_text__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._sole_flat_text__img);
		this._sole_flat_text.appendChild(this._sole_flat_text__img);
		this._bg.appendChild(this._sole_flat_text);
		this._sole_slight_camber_text=document.createElement('div');
		this._sole_slight_camber_text.ggId='Sole Slight camber text'
		this._sole_slight_camber_text.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._sole_slight_camber_text.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 840px;';
		hs+='top:  595px;';
		hs+='width: 146px;';
		hs+='height: 161px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._sole_slight_camber_text.setAttribute('style',hs);
		this._sole_slight_camber_text__img=document.createElement('img');
		this._sole_slight_camber_text__img.setAttribute('src','images/sole_slight_camber_text.png');
		this._sole_slight_camber_text__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._sole_slight_camber_text__img);
		this._sole_slight_camber_text.appendChild(this._sole_slight_camber_text__img);
		this._bg.appendChild(this._sole_slight_camber_text);
		this._sole_standard_text=document.createElement('div');
		this._sole_standard_text.ggId='Sole Standard text'
		this._sole_standard_text.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._sole_standard_text.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 840px;';
		hs+='top:  595px;';
		hs+='width: 146px;';
		hs+='height: 172px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._sole_standard_text.setAttribute('style',hs);
		this._sole_standard_text__img=document.createElement('img');
		this._sole_standard_text__img.setAttribute('src','images/sole_standard_text.png');
		this._sole_standard_text__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._sole_standard_text__img);
		this._sole_standard_text.appendChild(this._sole_standard_text__img);
		this._bg.appendChild(this._sole_standard_text);
		this._sole_4way_text=document.createElement('div');
		this._sole_4way_text.ggId='Sole 4way text'
		this._sole_4way_text.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._sole_4way_text.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 840px;';
		hs+='top:  595px;';
		hs+='width: 146px;';
		hs+='height: 187px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._sole_4way_text.setAttribute('style',hs);
		this._sole_4way_text__img=document.createElement('img');
		this._sole_4way_text__img.setAttribute('src','images/sole_4way_text.png');
		this._sole_4way_text__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._sole_4way_text__img);
		this._sole_4way_text.appendChild(this._sole_4way_text__img);
		this._bg.appendChild(this._sole_4way_text);
		this._sole_btn_container=document.createElement('div');
		this._sole_btn_container.ggId='Sole btn container'
		this._sole_btn_container.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._sole_btn_container.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 835px;';
		hs+='top:  505px;';
		hs+='width: 156px;';
		hs+='height: 85px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		this._sole_btn_container.setAttribute('style',hs);
		this._sole_flat_btn=document.createElement('div');
		this._sole_flat_btn.ggId='Sole flat btn'
		this._sole_flat_btn.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._sole_flat_btn.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 5px;';
		hs+='top:  0px;';
		hs+='width: 150px;';
		hs+='height: 20px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		hs+='cursor: pointer;';
		this._sole_flat_btn.setAttribute('style',hs);
		this._sole_flat_btn__img=document.createElement('img');
		this._sole_flat_btn__img.setAttribute('src','images/sole_flat_btn.png');
		this._sole_flat_btn__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._sole_flat_btn__img);
		this._sole_flat_btn.appendChild(this._sole_flat_btn__img);
		this._sole_flat_btn.onclick=function () {
			me._b_sole_4_way_roll.style.webkitTransition='none';
			me._b_sole_4_way_roll.style.visibility='hidden';
			me._b_sole_4_way_roll.ggVisible=false;
			me._sole_4way_text.style.webkitTransition='none';
			me._sole_4way_text.style.visibility='hidden';
			me._sole_4way_text.ggVisible=false;
			me._b_sole_slight_camber.style.webkitTransition='none';
			me._b_sole_slight_camber.style.visibility='hidden';
			me._b_sole_slight_camber.ggVisible=false;
			me._sole_slight_camber_text.style.webkitTransition='none';
			me._sole_slight_camber_text.style.visibility='hidden';
			me._sole_slight_camber_text.ggVisible=false;
			me._b_sole_slight_flat.style.webkitTransition='none';
			me._b_sole_slight_flat.style.visibility='inherit';
			me._b_sole_slight_flat.ggVisible=true;
			me._sole_flat_text.style.webkitTransition='none';
			me._sole_flat_text.style.visibility='inherit';
			me._sole_flat_text.ggVisible=true;
			me._b_sole_standard.style.webkitTransition='none';
			me._b_sole_standard.style.visibility='hidden';
			me._b_sole_standard.ggVisible=false;
			me._sole_standard_text.style.webkitTransition='none';
			me._sole_standard_text.style.visibility='hidden';
			me._sole_standard_text.ggVisible=false;
			me._ind_b_sole_4_way_roll_.style.webkitTransition='none';
			me._ind_b_sole_4_way_roll_.style.visibility='hidden';
			me._ind_b_sole_4_way_roll_.ggVisible=false;
			me._ind_a_heel_rolled_off_.style.webkitTransition='none';
			me._ind_a_heel_rolled_off_.style.visibility='hidden';
			me._ind_a_heel_rolled_off_.ggVisible=false;
			me._ind_a_heel_sharp_.style.webkitTransition='none';
			me._ind_a_heel_sharp_.style.visibility='hidden';
			me._ind_a_heel_sharp_.ggVisible=false;
			me._ind_a_toe_round_.style.webkitTransition='none';
			me._ind_a_toe_round_.style.visibility='hidden';
			me._ind_a_toe_round_.ggVisible=false;
			me._ind_a_toe_square_.style.webkitTransition='none';
			me._ind_a_toe_square_.style.visibility='hidden';
			me._ind_a_toe_square_.ggVisible=false;
			me._ind_a_toe_standard_.style.webkitTransition='none';
			me._ind_a_toe_standard_.style.visibility='hidden';
			me._ind_a_toe_standard_.ggVisible=false;
			me._ind_a_leading_edge_curved.style.webkitTransition='none';
			me._ind_a_leading_edge_curved.style.visibility='hidden';
			me._ind_a_leading_edge_curved.ggVisible=false;
			me._ind_a_leading_edge_straight_.style.webkitTransition='none';
			me._ind_a_leading_edge_straight_.style.visibility='hidden';
			me._ind_a_leading_edge_straight_.ggVisible=false;
			me._ind_b_le_blend_blunt.style.webkitTransition='none';
			me._ind_b_le_blend_blunt.style.visibility='hidden';
			me._ind_b_le_blend_blunt.ggVisible=false;
			me._ind_b_le_blend_killed_.style.webkitTransition='none';
			me._ind_b_le_blend_killed_.style.visibility='hidden';
			me._ind_b_le_blend_killed_.ggVisible=false;
			me._ind_b_le_blend_rolled_.style.webkitTransition='none';
			me._ind_b_le_blend_rolled_.style.visibility='hidden';
			me._ind_b_le_blend_rolled_.ggVisible=false;
			me._ind_b_le_blend_standard_.style.webkitTransition='none';
			me._ind_b_le_blend_standard_.style.visibility='hidden';
			me._ind_b_le_blend_standard_.ggVisible=false;
			me._ind_b_sole_slight_camber_.style.webkitTransition='none';
			me._ind_b_sole_slight_camber_.style.visibility='hidden';
			me._ind_b_sole_slight_camber_.ggVisible=false;
			me._ind_b_sole_slight_flat_.style.webkitTransition='none';
			me._ind_b_sole_slight_flat_.style.visibility='inherit';
			me._ind_b_sole_slight_flat_.ggVisible=true;
			me._ind_b_sole_standard_.style.webkitTransition='none';
			me._ind_b_sole_standard_.style.visibility='hidden';
			me._ind_b_sole_standard_.ggVisible=false;
			me._ind_b_top_line_thick_.style.webkitTransition='none';
			me._ind_b_top_line_thick_.style.visibility='hidden';
			me._ind_b_top_line_thick_.ggVisible=false;
			me._ind_b_top_line_thin_.style.webkitTransition='none';
			me._ind_b_top_line_thin_.style.visibility='hidden';
			me._ind_b_top_line_thin_.ggVisible=false;
			me._ind_b_top_line_standard_.style.webkitTransition='none';
			me._ind_b_top_line_standard_.style.visibility='hidden';
			me._ind_b_top_line_standard_.ggVisible=false;
		}
		this._sole_btn_container.appendChild(this._sole_flat_btn);
		this._sole_slight_camber_btn=document.createElement('div');
		this._sole_slight_camber_btn.ggId='Sole slight camber btn'
		this._sole_slight_camber_btn.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._sole_slight_camber_btn.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 5px;';
		hs+='top:  20px;';
		hs+='width: 150px;';
		hs+='height: 20px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		hs+='cursor: pointer;';
		this._sole_slight_camber_btn.setAttribute('style',hs);
		this._sole_slight_camber_btn__img=document.createElement('img');
		this._sole_slight_camber_btn__img.setAttribute('src','images/sole_slight_camber_btn.png');
		this._sole_slight_camber_btn__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._sole_slight_camber_btn__img);
		this._sole_slight_camber_btn.appendChild(this._sole_slight_camber_btn__img);
		this._sole_slight_camber_btn.onclick=function () {
			me._b_sole_4_way_roll.style.webkitTransition='none';
			me._b_sole_4_way_roll.style.visibility='hidden';
			me._b_sole_4_way_roll.ggVisible=false;
			me._sole_4way_text.style.webkitTransition='none';
			me._sole_4way_text.style.visibility='hidden';
			me._sole_4way_text.ggVisible=false;
			me._b_sole_slight_camber.style.webkitTransition='none';
			me._b_sole_slight_camber.style.visibility='inherit';
			me._b_sole_slight_camber.ggVisible=true;
			me._sole_slight_camber_text.style.webkitTransition='none';
			me._sole_slight_camber_text.style.visibility='inherit';
			me._sole_slight_camber_text.ggVisible=true;
			me._b_sole_slight_flat.style.webkitTransition='none';
			me._b_sole_slight_flat.style.visibility='hidden';
			me._b_sole_slight_flat.ggVisible=false;
			me._sole_flat_text.style.webkitTransition='none';
			me._sole_flat_text.style.visibility='hidden';
			me._sole_flat_text.ggVisible=false;
			me._b_sole_standard.style.webkitTransition='none';
			me._b_sole_standard.style.visibility='hidden';
			me._b_sole_standard.ggVisible=false;
			me._sole_standard_text.style.webkitTransition='none';
			me._sole_standard_text.style.visibility='hidden';
			me._sole_standard_text.ggVisible=false;
			me._ind_b_sole_4_way_roll_.style.webkitTransition='none';
			me._ind_b_sole_4_way_roll_.style.visibility='hidden';
			me._ind_b_sole_4_way_roll_.ggVisible=false;
			me._ind_a_heel_rolled_off_.style.webkitTransition='none';
			me._ind_a_heel_rolled_off_.style.visibility='hidden';
			me._ind_a_heel_rolled_off_.ggVisible=false;
			me._ind_a_heel_sharp_.style.webkitTransition='none';
			me._ind_a_heel_sharp_.style.visibility='hidden';
			me._ind_a_heel_sharp_.ggVisible=false;
			me._ind_a_toe_round_.style.webkitTransition='none';
			me._ind_a_toe_round_.style.visibility='hidden';
			me._ind_a_toe_round_.ggVisible=false;
			me._ind_a_toe_square_.style.webkitTransition='none';
			me._ind_a_toe_square_.style.visibility='hidden';
			me._ind_a_toe_square_.ggVisible=false;
			me._ind_a_toe_standard_.style.webkitTransition='none';
			me._ind_a_toe_standard_.style.visibility='hidden';
			me._ind_a_toe_standard_.ggVisible=false;
			me._ind_a_leading_edge_curved.style.webkitTransition='none';
			me._ind_a_leading_edge_curved.style.visibility='hidden';
			me._ind_a_leading_edge_curved.ggVisible=false;
			me._ind_a_leading_edge_straight_.style.webkitTransition='none';
			me._ind_a_leading_edge_straight_.style.visibility='hidden';
			me._ind_a_leading_edge_straight_.ggVisible=false;
			me._ind_b_le_blend_blunt.style.webkitTransition='none';
			me._ind_b_le_blend_blunt.style.visibility='hidden';
			me._ind_b_le_blend_blunt.ggVisible=false;
			me._ind_b_le_blend_killed_.style.webkitTransition='none';
			me._ind_b_le_blend_killed_.style.visibility='hidden';
			me._ind_b_le_blend_killed_.ggVisible=false;
			me._ind_b_le_blend_rolled_.style.webkitTransition='none';
			me._ind_b_le_blend_rolled_.style.visibility='hidden';
			me._ind_b_le_blend_rolled_.ggVisible=false;
			me._ind_b_le_blend_standard_.style.webkitTransition='none';
			me._ind_b_le_blend_standard_.style.visibility='hidden';
			me._ind_b_le_blend_standard_.ggVisible=false;
			me._ind_b_sole_slight_camber_.style.webkitTransition='none';
			me._ind_b_sole_slight_camber_.style.visibility='inherit';
			me._ind_b_sole_slight_camber_.ggVisible=true;
			me._ind_b_sole_slight_flat_.style.webkitTransition='none';
			me._ind_b_sole_slight_flat_.style.visibility='hidden';
			me._ind_b_sole_slight_flat_.ggVisible=false;
			me._ind_b_sole_standard_.style.webkitTransition='none';
			me._ind_b_sole_standard_.style.visibility='hidden';
			me._ind_b_sole_standard_.ggVisible=false;
			me._ind_b_top_line_thick_.style.webkitTransition='none';
			me._ind_b_top_line_thick_.style.visibility='hidden';
			me._ind_b_top_line_thick_.ggVisible=false;
			me._ind_b_top_line_thin_.style.webkitTransition='none';
			me._ind_b_top_line_thin_.style.visibility='hidden';
			me._ind_b_top_line_thin_.ggVisible=false;
			me._ind_b_top_line_standard_.style.webkitTransition='none';
			me._ind_b_top_line_standard_.style.visibility='hidden';
			me._ind_b_top_line_standard_.ggVisible=false;
		}
		this._sole_btn_container.appendChild(this._sole_slight_camber_btn);
		this._sole_standard_btn=document.createElement('div');
		this._sole_standard_btn.ggId='Sole standard btn'
		this._sole_standard_btn.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._sole_standard_btn.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 5px;';
		hs+='top:  40px;';
		hs+='width: 150px;';
		hs+='height: 20px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		hs+='cursor: pointer;';
		this._sole_standard_btn.setAttribute('style',hs);
		this._sole_standard_btn__img=document.createElement('img');
		this._sole_standard_btn__img.setAttribute('src','images/sole_standard_btn.png');
		this._sole_standard_btn__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._sole_standard_btn__img);
		this._sole_standard_btn.appendChild(this._sole_standard_btn__img);
		this._sole_standard_btn.onclick=function () {
			me._b_sole_4_way_roll.style.webkitTransition='none';
			me._b_sole_4_way_roll.style.visibility='hidden';
			me._b_sole_4_way_roll.ggVisible=false;
			me._sole_4way_text.style.webkitTransition='none';
			me._sole_4way_text.style.visibility='hidden';
			me._sole_4way_text.ggVisible=false;
			me._b_sole_slight_camber.style.webkitTransition='none';
			me._b_sole_slight_camber.style.visibility='hidden';
			me._b_sole_slight_camber.ggVisible=false;
			me._sole_slight_camber_text.style.webkitTransition='none';
			me._sole_slight_camber_text.style.visibility='hidden';
			me._sole_slight_camber_text.ggVisible=false;
			me._b_sole_slight_flat.style.webkitTransition='none';
			me._b_sole_slight_flat.style.visibility='hidden';
			me._b_sole_slight_flat.ggVisible=false;
			me._sole_flat_text.style.webkitTransition='none';
			me._sole_flat_text.style.visibility='hidden';
			me._sole_flat_text.ggVisible=false;
			me._b_sole_standard.style.webkitTransition='none';
			me._b_sole_standard.style.visibility='inherit';
			me._b_sole_standard.ggVisible=true;
			me._sole_standard_text.style.webkitTransition='none';
			me._sole_standard_text.style.visibility='inherit';
			me._sole_standard_text.ggVisible=true;
			me._ind_b_sole_4_way_roll_.style.webkitTransition='none';
			me._ind_b_sole_4_way_roll_.style.visibility='hidden';
			me._ind_b_sole_4_way_roll_.ggVisible=false;
			me._ind_a_heel_rolled_off_.style.webkitTransition='none';
			me._ind_a_heel_rolled_off_.style.visibility='hidden';
			me._ind_a_heel_rolled_off_.ggVisible=false;
			me._ind_a_heel_sharp_.style.webkitTransition='none';
			me._ind_a_heel_sharp_.style.visibility='hidden';
			me._ind_a_heel_sharp_.ggVisible=false;
			me._ind_a_toe_round_.style.webkitTransition='none';
			me._ind_a_toe_round_.style.visibility='hidden';
			me._ind_a_toe_round_.ggVisible=false;
			me._ind_a_toe_square_.style.webkitTransition='none';
			me._ind_a_toe_square_.style.visibility='hidden';
			me._ind_a_toe_square_.ggVisible=false;
			me._ind_a_toe_standard_.style.webkitTransition='none';
			me._ind_a_toe_standard_.style.visibility='hidden';
			me._ind_a_toe_standard_.ggVisible=false;
			me._ind_a_leading_edge_curved.style.webkitTransition='none';
			me._ind_a_leading_edge_curved.style.visibility='hidden';
			me._ind_a_leading_edge_curved.ggVisible=false;
			me._ind_a_leading_edge_straight_.style.webkitTransition='none';
			me._ind_a_leading_edge_straight_.style.visibility='hidden';
			me._ind_a_leading_edge_straight_.ggVisible=false;
			me._ind_b_le_blend_blunt.style.webkitTransition='none';
			me._ind_b_le_blend_blunt.style.visibility='hidden';
			me._ind_b_le_blend_blunt.ggVisible=false;
			me._ind_b_le_blend_killed_.style.webkitTransition='none';
			me._ind_b_le_blend_killed_.style.visibility='hidden';
			me._ind_b_le_blend_killed_.ggVisible=false;
			me._ind_b_le_blend_rolled_.style.webkitTransition='none';
			me._ind_b_le_blend_rolled_.style.visibility='hidden';
			me._ind_b_le_blend_rolled_.ggVisible=false;
			me._ind_b_le_blend_standard_.style.webkitTransition='none';
			me._ind_b_le_blend_standard_.style.visibility='hidden';
			me._ind_b_le_blend_standard_.ggVisible=false;
			me._ind_b_sole_slight_camber_.style.webkitTransition='none';
			me._ind_b_sole_slight_camber_.style.visibility='hidden';
			me._ind_b_sole_slight_camber_.ggVisible=false;
			me._ind_b_sole_slight_flat_.style.webkitTransition='none';
			me._ind_b_sole_slight_flat_.style.visibility='hidden';
			me._ind_b_sole_slight_flat_.ggVisible=false;
			me._ind_b_sole_standard_.style.webkitTransition='none';
			me._ind_b_sole_standard_.style.visibility='inherit';
			me._ind_b_sole_standard_.ggVisible=true;
			me._ind_b_top_line_thick_.style.webkitTransition='none';
			me._ind_b_top_line_thick_.style.visibility='hidden';
			me._ind_b_top_line_thick_.ggVisible=false;
			me._ind_b_top_line_thin_.style.webkitTransition='none';
			me._ind_b_top_line_thin_.style.visibility='hidden';
			me._ind_b_top_line_thin_.ggVisible=false;
			me._ind_b_top_line_standard_.style.webkitTransition='none';
			me._ind_b_top_line_standard_.style.visibility='hidden';
			me._ind_b_top_line_standard_.ggVisible=false;
		}
		this._sole_btn_container.appendChild(this._sole_standard_btn);
		this._sole_4way_btn=document.createElement('div');
		this._sole_4way_btn.ggId='Sole 4way btn'
		this._sole_4way_btn.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._sole_4way_btn.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 5px;';
		hs+='top:  60px;';
		hs+='width: 150px;';
		hs+='height: 20px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		hs+='cursor: pointer;';
		this._sole_4way_btn.setAttribute('style',hs);
		this._sole_4way_btn__img=document.createElement('img');
		this._sole_4way_btn__img.setAttribute('src','images/sole_4way_btn.png');
		this._sole_4way_btn__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._sole_4way_btn__img);
		this._sole_4way_btn.appendChild(this._sole_4way_btn__img);
		this._sole_4way_btn.onclick=function () {
			me._b_sole_4_way_roll.style.webkitTransition='none';
			me._b_sole_4_way_roll.style.visibility='inherit';
			me._b_sole_4_way_roll.ggVisible=true;
			me._sole_4way_text.style.webkitTransition='none';
			me._sole_4way_text.style.visibility='inherit';
			me._sole_4way_text.ggVisible=true;
			me._b_sole_slight_camber.style.webkitTransition='none';
			me._b_sole_slight_camber.style.visibility='hidden';
			me._b_sole_slight_camber.ggVisible=false;
			me._sole_slight_camber_text.style.webkitTransition='none';
			me._sole_slight_camber_text.style.visibility='hidden';
			me._sole_slight_camber_text.ggVisible=false;
			me._b_sole_slight_flat.style.webkitTransition='none';
			me._b_sole_slight_flat.style.visibility='hidden';
			me._b_sole_slight_flat.ggVisible=false;
			me._sole_flat_text.style.webkitTransition='none';
			me._sole_flat_text.style.visibility='hidden';
			me._sole_flat_text.ggVisible=false;
			me._b_sole_standard.style.webkitTransition='none';
			me._b_sole_standard.style.visibility='hidden';
			me._b_sole_standard.ggVisible=false;
			me._sole_standard_text.style.webkitTransition='none';
			me._sole_standard_text.style.visibility='hidden';
			me._sole_standard_text.ggVisible=false;
			me._ind_b_sole_4_way_roll_.style.webkitTransition='none';
			me._ind_b_sole_4_way_roll_.style.visibility='inherit';
			me._ind_b_sole_4_way_roll_.ggVisible=true;
			me._ind_a_heel_rolled_off_.style.webkitTransition='none';
			me._ind_a_heel_rolled_off_.style.visibility='hidden';
			me._ind_a_heel_rolled_off_.ggVisible=false;
			me._ind_a_heel_sharp_.style.webkitTransition='none';
			me._ind_a_heel_sharp_.style.visibility='hidden';
			me._ind_a_heel_sharp_.ggVisible=false;
			me._ind_a_toe_round_.style.webkitTransition='none';
			me._ind_a_toe_round_.style.visibility='hidden';
			me._ind_a_toe_round_.ggVisible=false;
			me._ind_a_toe_square_.style.webkitTransition='none';
			me._ind_a_toe_square_.style.visibility='hidden';
			me._ind_a_toe_square_.ggVisible=false;
			me._ind_a_toe_standard_.style.webkitTransition='none';
			me._ind_a_toe_standard_.style.visibility='hidden';
			me._ind_a_toe_standard_.ggVisible=false;
			me._ind_a_leading_edge_curved.style.webkitTransition='none';
			me._ind_a_leading_edge_curved.style.visibility='hidden';
			me._ind_a_leading_edge_curved.ggVisible=false;
			me._ind_a_leading_edge_straight_.style.webkitTransition='none';
			me._ind_a_leading_edge_straight_.style.visibility='hidden';
			me._ind_a_leading_edge_straight_.ggVisible=false;
			me._ind_b_le_blend_blunt.style.webkitTransition='none';
			me._ind_b_le_blend_blunt.style.visibility='hidden';
			me._ind_b_le_blend_blunt.ggVisible=false;
			me._ind_b_le_blend_killed_.style.webkitTransition='none';
			me._ind_b_le_blend_killed_.style.visibility='hidden';
			me._ind_b_le_blend_killed_.ggVisible=false;
			me._ind_b_le_blend_rolled_.style.webkitTransition='none';
			me._ind_b_le_blend_rolled_.style.visibility='hidden';
			me._ind_b_le_blend_rolled_.ggVisible=false;
			me._ind_b_le_blend_standard_.style.webkitTransition='none';
			me._ind_b_le_blend_standard_.style.visibility='hidden';
			me._ind_b_le_blend_standard_.ggVisible=false;
			me._ind_b_sole_slight_camber_.style.webkitTransition='none';
			me._ind_b_sole_slight_camber_.style.visibility='hidden';
			me._ind_b_sole_slight_camber_.ggVisible=false;
			me._ind_b_sole_slight_flat_.style.webkitTransition='none';
			me._ind_b_sole_slight_flat_.style.visibility='hidden';
			me._ind_b_sole_slight_flat_.ggVisible=false;
			me._ind_b_sole_standard_.style.webkitTransition='none';
			me._ind_b_sole_standard_.style.visibility='hidden';
			me._ind_b_sole_standard_.ggVisible=false;
			me._ind_b_top_line_thick_.style.webkitTransition='none';
			me._ind_b_top_line_thick_.style.visibility='hidden';
			me._ind_b_top_line_thick_.ggVisible=false;
			me._ind_b_top_line_thin_.style.webkitTransition='none';
			me._ind_b_top_line_thin_.style.visibility='hidden';
			me._ind_b_top_line_thin_.ggVisible=false;
			me._ind_b_top_line_standard_.style.webkitTransition='none';
			me._ind_b_top_line_standard_.style.visibility='hidden';
			me._ind_b_top_line_standard_.ggVisible=false;
		}
		this._sole_btn_container.appendChild(this._sole_4way_btn);
		this._grey_line0=document.createElement('div');
		this._grey_line0.ggId='grey line'
		this._grey_line0.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._grey_line0.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 5px;';
		hs+='top:  80px;';
		hs+='width: 146px;';
		hs+='height: 5px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		this._grey_line0.setAttribute('style',hs);
		this._grey_line0__img=document.createElement('img');
		this._grey_line0__img.setAttribute('src','images/grey_line0.png');
		this._grey_line0__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._grey_line0__img);
		this._grey_line0.appendChild(this._grey_line0__img);
		this._sole_btn_container.appendChild(this._grey_line0);
		this._bg.appendChild(this._sole_btn_container);
		this._top_line_options_btn=document.createElement('div');
		this._top_line_options_btn.ggId='Top line options BTN'
		this._top_line_options_btn.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._top_line_options_btn.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 515px;';
		hs+='top:  480px;';
		hs+='width: 148px;';
		hs+='height: 15px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		hs+='cursor: pointer;';
		this._top_line_options_btn.setAttribute('style',hs);
		this._top_line_options_btn__img=document.createElement('img');
		this._top_line_options_btn__img.setAttribute('src','images/top_line_options_btn.png');
		this._top_line_options_btn__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._top_line_options_btn__img);
		this._top_line_options_btn.appendChild(this._top_line_options_btn__img);
		this._top_line_options_btn.onmouseover=function () {
			me._dot_top_line.style.webkitTransition='none';
			me._dot_top_line.style.visibility='inherit';
			me._dot_top_line.ggVisible=true;
		}
		this._top_line_options_btn.onmouseout=function () {
			me._dot_top_line.style.webkitTransition='none';
			me._dot_top_line.style.visibility='hidden';
			me._dot_top_line.ggVisible=false;
		}
		this._bg.appendChild(this._top_line_options_btn);
		this._top_line_thick_text=document.createElement('div');
		this._top_line_thick_text.ggId='Top line thick text'
		this._top_line_thick_text.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._top_line_thick_text.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 515px;';
		hs+='top:  575px;';
		hs+='width: 146px;';
		hs+='height: 156px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._top_line_thick_text.setAttribute('style',hs);
		this._top_line_thick_text__img=document.createElement('img');
		this._top_line_thick_text__img.setAttribute('src','images/top_line_thick_text.png');
		this._top_line_thick_text__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._top_line_thick_text__img);
		this._top_line_thick_text.appendChild(this._top_line_thick_text__img);
		this._bg.appendChild(this._top_line_thick_text);
		this._top_line_thin_text=document.createElement('div');
		this._top_line_thin_text.ggId='Top line thin text'
		this._top_line_thin_text.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._top_line_thin_text.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 515px;';
		hs+='top:  575px;';
		hs+='width: 146px;';
		hs+='height: 174px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._top_line_thin_text.setAttribute('style',hs);
		this._top_line_thin_text__img=document.createElement('img');
		this._top_line_thin_text__img.setAttribute('src','images/top_line_thin_text.png');
		this._top_line_thin_text__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._top_line_thin_text__img);
		this._top_line_thin_text.appendChild(this._top_line_thin_text__img);
		this._bg.appendChild(this._top_line_thin_text);
		this._top_line_standard_text=document.createElement('div');
		this._top_line_standard_text.ggId='Top line standard text'
		this._top_line_standard_text.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._top_line_standard_text.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 515px;';
		hs+='top:  575px;';
		hs+='width: 146px;';
		hs+='height: 119px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._top_line_standard_text.setAttribute('style',hs);
		this._top_line_standard_text__img=document.createElement('img');
		this._top_line_standard_text__img.setAttribute('src','images/top_line_standard_text.png');
		this._top_line_standard_text__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._top_line_standard_text__img);
		this._top_line_standard_text.appendChild(this._top_line_standard_text__img);
		this._bg.appendChild(this._top_line_standard_text);
		this._top_line_btn_container=document.createElement('div');
		this._top_line_btn_container.ggId='Top line btn container'
		this._top_line_btn_container.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._top_line_btn_container.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 515px;';
		hs+='top:  510px;';
		hs+='width: 156px;';
		hs+='height: 55px;';
		hs+='-webkit-transform-origin: 50% 0%;';
		hs+='visibility: inherit;';
		this._top_line_btn_container.setAttribute('style',hs);
		this._grey_line=document.createElement('div');
		this._grey_line.ggId='grey line'
		this._grey_line.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._grey_line.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 0px;';
		hs+='top:  55px;';
		hs+='width: 146px;';
		hs+='height: 5px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		this._grey_line.setAttribute('style',hs);
		this._grey_line__img=document.createElement('img');
		this._grey_line__img.setAttribute('src','images/grey_line.png');
		this._grey_line__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._grey_line__img);
		this._grey_line.appendChild(this._grey_line__img);
		this._top_line_btn_container.appendChild(this._grey_line);
		this._top_line_thin_btn=document.createElement('div');
		this._top_line_thin_btn.ggId='Top line thin btn'
		this._top_line_thin_btn.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._top_line_thin_btn.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 0px;';
		hs+='top:  -5px;';
		hs+='width: 150px;';
		hs+='height: 20px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		hs+='cursor: pointer;';
		this._top_line_thin_btn.setAttribute('style',hs);
		this._top_line_thin_btn__img=document.createElement('img');
		this._top_line_thin_btn__img.setAttribute('src','images/top_line_thin_btn.png');
		this._top_line_thin_btn__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._top_line_thin_btn__img);
		this._top_line_thin_btn.appendChild(this._top_line_thin_btn__img);
		this._top_line_thin_btn.onclick=function () {
			me._b_top_line_thin.style.webkitTransition='none';
			me._b_top_line_thin.style.visibility='inherit';
			me._b_top_line_thin.ggVisible=true;
			me._top_line_thin_text.style.webkitTransition='none';
			me._top_line_thin_text.style.visibility='inherit';
			me._top_line_thin_text.ggVisible=true;
			me._b_top_line_standard.style.webkitTransition='none';
			me._b_top_line_standard.style.visibility='hidden';
			me._b_top_line_standard.ggVisible=false;
			me._top_line_standard_text.style.webkitTransition='none';
			me._top_line_standard_text.style.visibility='hidden';
			me._top_line_standard_text.ggVisible=false;
			me._b_top_line_thick.style.webkitTransition='none';
			me._b_top_line_thick.style.visibility='hidden';
			me._b_top_line_thick.ggVisible=false;
			me._top_line_thick_text.style.webkitTransition='none';
			me._top_line_thick_text.style.visibility='hidden';
			me._top_line_thick_text.ggVisible=false;
			me._ind_b_le_blend_blunt.style.webkitTransition='none';
			me._ind_b_le_blend_blunt.style.visibility='hidden';
			me._ind_b_le_blend_blunt.ggVisible=false;
			me._ind_a_heel_rolled_off_.style.webkitTransition='none';
			me._ind_a_heel_rolled_off_.style.visibility='hidden';
			me._ind_a_heel_rolled_off_.ggVisible=false;
			me._ind_a_heel_sharp_.style.webkitTransition='none';
			me._ind_a_heel_sharp_.style.visibility='hidden';
			me._ind_a_heel_sharp_.ggVisible=false;
			me._ind_a_toe_round_.style.webkitTransition='none';
			me._ind_a_toe_round_.style.visibility='hidden';
			me._ind_a_toe_round_.ggVisible=false;
			me._ind_a_toe_square_.style.webkitTransition='none';
			me._ind_a_toe_square_.style.visibility='hidden';
			me._ind_a_toe_square_.ggVisible=false;
			me._ind_a_toe_standard_.style.webkitTransition='none';
			me._ind_a_toe_standard_.style.visibility='hidden';
			me._ind_a_toe_standard_.ggVisible=false;
			me._ind_a_leading_edge_curved.style.webkitTransition='none';
			me._ind_a_leading_edge_curved.style.visibility='hidden';
			me._ind_a_leading_edge_curved.ggVisible=false;
			me._ind_a_leading_edge_straight_.style.webkitTransition='none';
			me._ind_a_leading_edge_straight_.style.visibility='hidden';
			me._ind_a_leading_edge_straight_.ggVisible=false;
			me._ind_b_le_blend_killed_.style.webkitTransition='none';
			me._ind_b_le_blend_killed_.style.visibility='hidden';
			me._ind_b_le_blend_killed_.ggVisible=false;
			me._ind_b_le_blend_rolled_.style.webkitTransition='none';
			me._ind_b_le_blend_rolled_.style.visibility='hidden';
			me._ind_b_le_blend_rolled_.ggVisible=false;
			me._ind_b_le_blend_standard_.style.webkitTransition='none';
			me._ind_b_le_blend_standard_.style.visibility='hidden';
			me._ind_b_le_blend_standard_.ggVisible=false;
			me._ind_b_sole_4_way_roll_.style.webkitTransition='none';
			me._ind_b_sole_4_way_roll_.style.visibility='hidden';
			me._ind_b_sole_4_way_roll_.ggVisible=false;
			me._ind_b_sole_slight_camber_.style.webkitTransition='none';
			me._ind_b_sole_slight_camber_.style.visibility='hidden';
			me._ind_b_sole_slight_camber_.ggVisible=false;
			me._ind_b_sole_slight_flat_.style.webkitTransition='none';
			me._ind_b_sole_slight_flat_.style.visibility='hidden';
			me._ind_b_sole_slight_flat_.ggVisible=false;
			me._ind_b_sole_standard_.style.webkitTransition='none';
			me._ind_b_sole_standard_.style.visibility='hidden';
			me._ind_b_sole_standard_.ggVisible=false;
			me._ind_b_top_line_standard_.style.webkitTransition='none';
			me._ind_b_top_line_standard_.style.visibility='hidden';
			me._ind_b_top_line_standard_.ggVisible=false;
			me._ind_b_top_line_thick_.style.webkitTransition='none';
			me._ind_b_top_line_thick_.style.visibility='hidden';
			me._ind_b_top_line_thick_.ggVisible=false;
			me._ind_b_top_line_thin_.style.webkitTransition='none';
			me._ind_b_top_line_thin_.style.visibility='inherit';
			me._ind_b_top_line_thin_.ggVisible=true;
		}
		this._top_line_btn_container.appendChild(this._top_line_thin_btn);
		this._top_line_standard_btn=document.createElement('div');
		this._top_line_standard_btn.ggId='Top line standard btn'
		this._top_line_standard_btn.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._top_line_standard_btn.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 0px;';
		hs+='top:  15px;';
		hs+='width: 150px;';
		hs+='height: 20px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		hs+='cursor: pointer;';
		this._top_line_standard_btn.setAttribute('style',hs);
		this._top_line_standard_btn__img=document.createElement('img');
		this._top_line_standard_btn__img.setAttribute('src','images/top_line_standard_btn.png');
		this._top_line_standard_btn__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._top_line_standard_btn__img);
		this._top_line_standard_btn.appendChild(this._top_line_standard_btn__img);
		this._top_line_standard_btn.onclick=function () {
			me._b_top_line_thin.style.webkitTransition='none';
			me._b_top_line_thin.style.visibility='hidden';
			me._b_top_line_thin.ggVisible=false;
			me._top_line_thin_text.style.webkitTransition='none';
			me._top_line_thin_text.style.visibility='hidden';
			me._top_line_thin_text.ggVisible=false;
			me._b_top_line_standard.style.webkitTransition='none';
			me._b_top_line_standard.style.visibility='inherit';
			me._b_top_line_standard.ggVisible=true;
			me._top_line_standard_text.style.webkitTransition='none';
			me._top_line_standard_text.style.visibility='inherit';
			me._top_line_standard_text.ggVisible=true;
			me._b_top_line_thick.style.webkitTransition='none';
			me._b_top_line_thick.style.visibility='hidden';
			me._b_top_line_thick.ggVisible=false;
			me._top_line_thick_text.style.webkitTransition='none';
			me._top_line_thick_text.style.visibility='hidden';
			me._top_line_thick_text.ggVisible=false;
			me._ind_b_le_blend_blunt.style.webkitTransition='none';
			me._ind_b_le_blend_blunt.style.visibility='hidden';
			me._ind_b_le_blend_blunt.ggVisible=false;
			me._ind_a_heel_rolled_off_.style.webkitTransition='none';
			me._ind_a_heel_rolled_off_.style.visibility='hidden';
			me._ind_a_heel_rolled_off_.ggVisible=false;
			me._ind_a_heel_sharp_.style.webkitTransition='none';
			me._ind_a_heel_sharp_.style.visibility='hidden';
			me._ind_a_heel_sharp_.ggVisible=false;
			me._ind_a_toe_round_.style.webkitTransition='none';
			me._ind_a_toe_round_.style.visibility='hidden';
			me._ind_a_toe_round_.ggVisible=false;
			me._ind_a_toe_square_.style.webkitTransition='none';
			me._ind_a_toe_square_.style.visibility='hidden';
			me._ind_a_toe_square_.ggVisible=false;
			me._ind_a_toe_standard_.style.webkitTransition='none';
			me._ind_a_toe_standard_.style.visibility='hidden';
			me._ind_a_toe_standard_.ggVisible=false;
			me._ind_a_leading_edge_curved.style.webkitTransition='none';
			me._ind_a_leading_edge_curved.style.visibility='hidden';
			me._ind_a_leading_edge_curved.ggVisible=false;
			me._ind_a_leading_edge_straight_.style.webkitTransition='none';
			me._ind_a_leading_edge_straight_.style.visibility='hidden';
			me._ind_a_leading_edge_straight_.ggVisible=false;
			me._ind_b_le_blend_killed_.style.webkitTransition='none';
			me._ind_b_le_blend_killed_.style.visibility='hidden';
			me._ind_b_le_blend_killed_.ggVisible=false;
			me._ind_b_le_blend_rolled_.style.webkitTransition='none';
			me._ind_b_le_blend_rolled_.style.visibility='hidden';
			me._ind_b_le_blend_rolled_.ggVisible=false;
			me._ind_b_le_blend_standard_.style.webkitTransition='none';
			me._ind_b_le_blend_standard_.style.visibility='hidden';
			me._ind_b_le_blend_standard_.ggVisible=false;
			me._ind_b_sole_4_way_roll_.style.webkitTransition='none';
			me._ind_b_sole_4_way_roll_.style.visibility='hidden';
			me._ind_b_sole_4_way_roll_.ggVisible=false;
			me._ind_b_sole_slight_camber_.style.webkitTransition='none';
			me._ind_b_sole_slight_camber_.style.visibility='hidden';
			me._ind_b_sole_slight_camber_.ggVisible=false;
			me._ind_b_sole_slight_flat_.style.webkitTransition='none';
			me._ind_b_sole_slight_flat_.style.visibility='hidden';
			me._ind_b_sole_slight_flat_.ggVisible=false;
			me._ind_b_sole_standard_.style.webkitTransition='none';
			me._ind_b_sole_standard_.style.visibility='hidden';
			me._ind_b_sole_standard_.ggVisible=false;
			me._ind_b_top_line_standard_.style.webkitTransition='none';
			me._ind_b_top_line_standard_.style.visibility='inherit';
			me._ind_b_top_line_standard_.ggVisible=true;
			me._ind_b_top_line_thick_.style.webkitTransition='none';
			me._ind_b_top_line_thick_.style.visibility='hidden';
			me._ind_b_top_line_thick_.ggVisible=false;
			me._ind_b_top_line_thin_.style.webkitTransition='none';
			me._ind_b_top_line_thin_.style.visibility='hidden';
			me._ind_b_top_line_thin_.ggVisible=false;
		}
		this._top_line_btn_container.appendChild(this._top_line_standard_btn);
		this._top_line_thick_btn=document.createElement('div');
		this._top_line_thick_btn.ggId='Top line thick btn'
		this._top_line_thick_btn.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._top_line_thick_btn.ggVisible=true;
		hs ='position:absolute;';
		hs+='left: 0px;';
		hs+='top:  35px;';
		hs+='width: 150px;';
		hs+='height: 20px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: inherit;';
		hs+='cursor: pointer;';
		this._top_line_thick_btn.setAttribute('style',hs);
		this._top_line_thick_btn__img=document.createElement('img');
		this._top_line_thick_btn__img.setAttribute('src','images/top_line_thick_btn.png');
		this._top_line_thick_btn__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._top_line_thick_btn__img);
		this._top_line_thick_btn.appendChild(this._top_line_thick_btn__img);
		this._top_line_thick_btn.onclick=function () {
			me._b_top_line_thin.style.webkitTransition='none';
			me._b_top_line_thin.style.visibility='hidden';
			me._b_top_line_thin.ggVisible=false;
			me._top_line_thin_text.style.webkitTransition='none';
			me._top_line_thin_text.style.visibility='hidden';
			me._top_line_thin_text.ggVisible=false;
			me._b_top_line_standard.style.webkitTransition='none';
			me._b_top_line_standard.style.visibility='hidden';
			me._b_top_line_standard.ggVisible=false;
			me._top_line_standard_text.style.webkitTransition='none';
			me._top_line_standard_text.style.visibility='hidden';
			me._top_line_standard_text.ggVisible=false;
			me._b_top_line_thick.style.webkitTransition='none';
			me._b_top_line_thick.style.visibility='inherit';
			me._b_top_line_thick.ggVisible=true;
			me._top_line_thick_text.style.webkitTransition='none';
			me._top_line_thick_text.style.visibility='inherit';
			me._top_line_thick_text.ggVisible=true;
			me._ind_b_le_blend_blunt.style.webkitTransition='none';
			me._ind_b_le_blend_blunt.style.visibility='hidden';
			me._ind_b_le_blend_blunt.ggVisible=false;
			me._ind_a_heel_rolled_off_.style.webkitTransition='none';
			me._ind_a_heel_rolled_off_.style.visibility='hidden';
			me._ind_a_heel_rolled_off_.ggVisible=false;
			me._ind_a_heel_sharp_.style.webkitTransition='none';
			me._ind_a_heel_sharp_.style.visibility='hidden';
			me._ind_a_heel_sharp_.ggVisible=false;
			me._ind_a_toe_round_.style.webkitTransition='none';
			me._ind_a_toe_round_.style.visibility='hidden';
			me._ind_a_toe_round_.ggVisible=false;
			me._ind_a_toe_square_.style.webkitTransition='none';
			me._ind_a_toe_square_.style.visibility='hidden';
			me._ind_a_toe_square_.ggVisible=false;
			me._ind_a_toe_standard_.style.webkitTransition='none';
			me._ind_a_toe_standard_.style.visibility='hidden';
			me._ind_a_toe_standard_.ggVisible=false;
			me._ind_a_leading_edge_curved.style.webkitTransition='none';
			me._ind_a_leading_edge_curved.style.visibility='hidden';
			me._ind_a_leading_edge_curved.ggVisible=false;
			me._ind_a_leading_edge_straight_.style.webkitTransition='none';
			me._ind_a_leading_edge_straight_.style.visibility='hidden';
			me._ind_a_leading_edge_straight_.ggVisible=false;
			me._ind_b_le_blend_killed_.style.webkitTransition='none';
			me._ind_b_le_blend_killed_.style.visibility='hidden';
			me._ind_b_le_blend_killed_.ggVisible=false;
			me._ind_b_le_blend_rolled_.style.webkitTransition='none';
			me._ind_b_le_blend_rolled_.style.visibility='hidden';
			me._ind_b_le_blend_rolled_.ggVisible=false;
			me._ind_b_le_blend_standard_.style.webkitTransition='none';
			me._ind_b_le_blend_standard_.style.visibility='hidden';
			me._ind_b_le_blend_standard_.ggVisible=false;
			me._ind_b_sole_4_way_roll_.style.webkitTransition='none';
			me._ind_b_sole_4_way_roll_.style.visibility='hidden';
			me._ind_b_sole_4_way_roll_.ggVisible=false;
			me._ind_b_sole_slight_camber_.style.webkitTransition='none';
			me._ind_b_sole_slight_camber_.style.visibility='hidden';
			me._ind_b_sole_slight_camber_.ggVisible=false;
			me._ind_b_sole_slight_flat_.style.webkitTransition='none';
			me._ind_b_sole_slight_flat_.style.visibility='hidden';
			me._ind_b_sole_slight_flat_.ggVisible=false;
			me._ind_b_sole_standard_.style.webkitTransition='none';
			me._ind_b_sole_standard_.style.visibility='hidden';
			me._ind_b_sole_standard_.ggVisible=false;
			me._ind_b_top_line_standard_.style.webkitTransition='none';
			me._ind_b_top_line_standard_.style.visibility='hidden';
			me._ind_b_top_line_standard_.ggVisible=false;
			me._ind_b_top_line_thick_.style.webkitTransition='none';
			me._ind_b_top_line_thick_.style.visibility='inherit';
			me._ind_b_top_line_thick_.ggVisible=true;
			me._ind_b_top_line_thin_.style.webkitTransition='none';
			me._ind_b_top_line_thin_.style.visibility='hidden';
			me._ind_b_top_line_thin_.ggVisible=false;
		}
		this._top_line_btn_container.appendChild(this._top_line_thick_btn);
		this._bg.appendChild(this._top_line_btn_container);
		this._dot_leading_edge=document.createElement('div');
		this._dot_leading_edge.ggId='DOT Leading Edge'
		this._dot_leading_edge.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._dot_leading_edge.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 265px;';
		hs+='top:  390px;';
		hs+='width: 28px;';
		hs+='height: 30px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._dot_leading_edge.setAttribute('style',hs);
		this._dot_leading_edge__img=document.createElement('img');
		this._dot_leading_edge__img.setAttribute('src','images/dot_leading_edge.png');
		this._dot_leading_edge__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._dot_leading_edge__img);
		this._dot_leading_edge.appendChild(this._dot_leading_edge__img);
		this._bg.appendChild(this._dot_leading_edge);
		this._dot_top_line=document.createElement('div');
		this._dot_top_line.ggId='DOT top line'
		this._dot_top_line.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._dot_top_line.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 745px;';
		hs+='top:  150px;';
		hs+='width: 28px;';
		hs+='height: 30px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._dot_top_line.setAttribute('style',hs);
		this._dot_top_line__img=document.createElement('img');
		this._dot_top_line__img.setAttribute('src','images/dot_top_line.png');
		this._dot_top_line__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._dot_top_line__img);
		this._dot_top_line.appendChild(this._dot_top_line__img);
		this._bg.appendChild(this._dot_top_line);
		this._dot_le_blend=document.createElement('div');
		this._dot_le_blend.ggId='DOT LE Blend'
		this._dot_le_blend.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._dot_le_blend.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 900px;';
		hs+='top:  380px;';
		hs+='width: 28px;';
		hs+='height: 30px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._dot_le_blend.setAttribute('style',hs);
		this._dot_le_blend__img=document.createElement('img');
		this._dot_le_blend__img.setAttribute('src','images/dot_le_blend.png');
		this._dot_le_blend__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._dot_le_blend__img);
		this._dot_le_blend.appendChild(this._dot_le_blend__img);
		this._bg.appendChild(this._dot_le_blend);
		this._dot_sole_shape=document.createElement('div');
		this._dot_sole_shape.ggId='DOT sole shape'
		this._dot_sole_shape.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._dot_sole_shape.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 825px;';
		hs+='top:  400px;';
		hs+='width: 28px;';
		hs+='height: 30px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._dot_sole_shape.setAttribute('style',hs);
		this._dot_sole_shape__img=document.createElement('img');
		this._dot_sole_shape__img.setAttribute('src','images/dot_sole_shape.png');
		this._dot_sole_shape__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._dot_sole_shape__img);
		this._dot_sole_shape.appendChild(this._dot_sole_shape__img);
		this._bg.appendChild(this._dot_sole_shape);
		this._dot_heel=document.createElement('div');
		this._dot_heel.ggId='DOT heel'
		this._dot_heel.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._dot_heel.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 455px;';
		hs+='top:  370px;';
		hs+='width: 28px;';
		hs+='height: 30px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._dot_heel.setAttribute('style',hs);
		this._dot_heel__img=document.createElement('img');
		this._dot_heel__img.setAttribute('src','images/dot_heel.png');
		this._dot_heel__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._dot_heel__img);
		this._dot_heel.appendChild(this._dot_heel__img);
		this._bg.appendChild(this._dot_heel);
		this._dot_toe=document.createElement('div');
		this._dot_toe.ggId='DOT toe'
		this._dot_toe.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };
		this._dot_toe.ggVisible=false;
		hs ='position:absolute;';
		hs+='left: 65px;';
		hs+='top:  255px;';
		hs+='width: 28px;';
		hs+='height: 30px;';
		hs+='-webkit-transform-origin: 50% 50%;';
		hs+='visibility: hidden;';
		this._dot_toe.setAttribute('style',hs);
		this._dot_toe__img=document.createElement('img');
		this._dot_toe__img.setAttribute('src','images/dot_toe.png');
		this._dot_toe__img.setAttribute('style','position: absolute;top: 0px;left: 0px;');
		me.player.checkLoaded.push(this._dot_toe__img);
		this._dot_toe.appendChild(this._dot_toe__img);
		this._bg.appendChild(this._dot_toe);
		this.divSkin.appendChild(this._bg);
		this.divSkin.ggUpdateSize=function(w,h) {
			me.updateSize(me.divSkin);
		}
		this.divSkin.ggLoaded=function() {
			me._loading_image.style.webkitTransition='none';
			me._loading_image.style.visibility='hidden';
			me._loading_image.ggVisible=false;
		}
		this.divSkin.ggReLoaded=function() {
		}
		this.divSkin.ggEnterFullscreen=function() {
		}
		this.divSkin.ggExitFullscreen=function() {
		}
		this.skinTimerEvent();
	};
	this.hotspotProxyClick=function(id) {
	}
	this.hotspotProxyOver=function(id) {
	}
	this.hotspotProxyOut=function(id) {
	}
	this.skinTimerEvent=function() {
		setTimeout(function() { me.skinTimerEvent(); }, 10);
		this._loading_text.ggUpdateText();
		var hs='';
		if (me._loading_bar.ggParameter) {
			hs+=parameterToTransform(me._loading_bar.ggParameter) + ' ';
		}
		hs+='scale(' + (1 * me.player.getPercentLoaded() + 0) + ',1.0) ';
		me._loading_bar.style.webkitTransform=hs;
	};
	this.addSkin();
};
