function slideleft()
	{
	var cross_slide=document.getElementById('slideBlockOne');
	var cross_slide2=document.getElementById('slideBlockTwo');
	var actualwidth = cross_slide.offsetWidth;

	if (parseInt(cross_slide.style.left,10)>(actualwidth*(-1)+8))
		{
		cross_slide.style.left=parseInt(cross_slide.style.left,10)-copyspeed+"px";
		}
	else
		{
		cross_slide.style.left=parseInt(cross_slide2.style.left,10)+actualwidth+4+"px";
		}
	
	if (parseInt(cross_slide2.style.left,10)>(actualwidth*(-1)+8))
		{
		cross_slide2.style.left=parseInt(cross_slide2.style.left,10)-copyspeed+"px";
		}
	else
		{
		cross_slide2.style.left=parseInt(cross_slide.style.left,10)+actualwidth+4+"px";
		}
	}

function slideStop()
	{
	copyspeed=0;
	}

function slideContinue()
	{
	copyspeed=1; //Specify the slider's slide speed (larger is faster 1-10)
	}
	
function restartSlider()
	{
	document.getElementById('slideBlockTwo').style.left = document.getElementById('slideBlockOne').offsetWidth + 4 + "px";
	document.getElementById('slideBlockTwo').style.display = '';
	copyspeed = 1; //Specify the slider's slide speed (larger is faster 1-10)
	window.setInterval(slideleft,50);
	}

window.onload = function()
	{
	document.getElementById('slideBlockTwo').style.left = document.getElementById('slideBlockOne').offsetWidth + 4 + "px";
	document.getElementById('slideBlockTwo').style.display = '';
	copyspeed = 1; //Specify the slider's slide speed (larger is faster 1-10)
	window.setInterval(slideleft,50);
	};