	function clearToggle()
		{
		   document.getElementById('copy1').style.display = 'block';
		   document.getElementById('copy2').style.display = 'none';
		   document.getElementById('copy3').style.display = 'none';
		   document.getElementById('copy4').style.display = 'none';
		   
		   document.getElementById('box-top').style.backgroundImage="url"+"(http://www.pokerstars.com/images/hpbox/top1.gif)";
		   document.getElementById('box-middle').style.backgroundImage="url"+"(http://www.pokerstars.com/images/hpbox/middle1.gif)";
		   document.getElementById('box-bottom').style.backgroundImage="url"+"(http://www.pokerstars.com/images/hpbox/bottom1.gif)";
		   
		}

	   var div1 = document.getElementById('copy1');
	   var div2 = document.getElementById('copy2');
	   var div3 = document.getElementById('copy3');
	   var div4 = document.getElementById('copy4');
	   
	function toggleDivs1()
	{
	   
	   if( (div1.style.display == 'block') || (div3.style.display == 'block') || (div4.style.display == 'block'))
	   {
	      div1.style.display = 'none';
		  div2.style.display = 'block';
		  div3.style.display = 'none';
		  div4.style.display = 'none';
		  
		  document.getElementById('box-top').style.backgroundImage="url"+"(http://www.pokerstars.com/images/hpbox/top2.gif)";
		  document.getElementById('box-bottom').style.backgroundImage="url"+"(http://www.pokerstars.com/images/hpbox/bottom1.gif)";
		  document.getElementById('box-middle').style.backgroundImage="url"+"(http://www.pokerstars.com/images/hpbox/middle1.gif)";
		
	   }
	}
	
	function toggleDivs2()
	{
	   
	   if( (div1.style.display == 'block') || (div2.style.display == 'block') || (div4.style.display == 'block'))
	   {
	      div1.style.display = 'none';
		  div2.style.display = 'none';
		  div3.style.display = 'block';
		  div4.style.display = 'none';
		  
		  document.getElementById('box-top').style.backgroundImage="url"+"(http://www.pokerstars.com/images/hpbox/top1.gif)";
		  document.getElementById('box-bottom').style.backgroundImage="url"+"(http://www.pokerstars.com/images/hpbox/bottom1.gif)";
		  document.getElementById('box-middle').style.backgroundImage="url"+"(http://www.pokerstars.com/images/hpbox/middle2.gif)";
	   }
	}
	
	function toggleDivs3()
	{
	   
	   if( (div1.style.display == 'block') || (div2.style.display == 'block') || (div3.style.display == 'block'))
	   {
	      div1.style.display = 'none';
		  div2.style.display = 'none';
		  div3.style.display = 'none';
		  div4.style.display = 'block';
		  
		  document.getElementById('box-top').style.backgroundImage="url"+"(http://www.pokerstars.com/images/hpbox/top1.gif)";
		  document.getElementById('box-bottom').style.backgroundImage="url"+"(http://www.pokerstars.com/images/hpbox/bottom2.gif)";
		  document.getElementById('box-middle').style.backgroundImage="url"+"(http://www.pokerstars.com/images/hpbox/middle1.gif)";
	   }
	}
