	function layerChangeT(i) {
		this.init=function () {
			$('.layerChange').css({display:'none'});
		}
		this.first=function () {
			var temp=$('.layerControlImg a').eq(i).find('img').attr('src');
			temp=temp.replace('off','on');
			$('.layerControlImg a').eq(i).find('img').attr('src',temp);
			$('.layerControlImg a').eq(i).find('img').attr('flag','1');
			$('.layerChange').eq(i).css({display:'block'});
		}
		this.normal=function () {
			$('.layerControlImg').click(function () {
				$('.layerControlImg').each(function (){
					var temp=$(this).find('a').find('img').attr('src');
					temp=temp.replace('on','off');
					$(this).find('a').find('img').attr('src',temp);
					$(this).find('a').find('img').attr('flag','0');
				})
				var temp=$(this).find('a').find('img').attr('src');
				temp=temp.replace('off','on');
				$(this).find('a').find('img').attr('src',temp);
				$(this).find('a').find('img').attr('flag','1');

				$('.layerChange').css({display:'none'});
				$('.layerControlImg').each(function (i,n){
					if ($(this).find('a').find('img').attr('flag')=='1')	{
						$('.layerChange').eq(i).css({display:'block'});
					};
				})
			})
		}
	}