var currentnumber = 0
var FeatureTween;
var FeatureTween_Close;

var LeftSplatter;
var RightSplatter;


	


function initOpenAux()
{
	if (currentnumber==0){
		var initpath = document.getElementById("master");
		initpath.style.left="0px"
		initpath.style.top="-103px"
		FeatureTween = new JSTween("FeatureTween","master",5);
		FeatureTween.Move(0,0);
		currentnumber=1;
	}else{
		var initpath = document.getElementById("master");
		FeatureTween_Close = new JSTween("FeatureTween_Close","master",5);
		FeatureTween_Close.Move(-103,0);
		currentnumber=0;
	}
}


function initYouTubeSlide()
{
	//if (currentnumber==0){
		var initpath = document.getElementById("dom_wrapper");
		initpath.style.left="0px"
		initpath.style.top="-8000px"
		FeatureTween = new JSTween("FeatureTween","dom_wrapper",9);
		FeatureTween.Move(0,0);
		currentnumber=1;
	//}
}

function initYouTubeSlide_Close()
{
		var initpath = document.getElementById("dom_wrapper");
		initpath.style.left="0px"
		initpath.style.top="0px"
		FeatureTween = new JSTween("FeatureTween","dom_wrapper",7);
		FeatureTween.Move(-8000,0);
		currentnumber=1;
}


function initSplatterSlide_Left()
{
		var initpath = document.getElementById("splatter_Left");
		initpath.style.left="0px"
		initpath.style.top="-5000px"
		LeftSplatter = new JSTween("LeftSplatter","splatter_Left",9);
		LeftSplatter.Move(0,0);
		currentnumber=1;
}

function initSplatterSlide_Right()
{
		var initpath = document.getElementById("splatter_Right");
		initpath.style.right="0px"
		initpath.style.top="-1000px"
		RightSplatter = new JSTween("RightSplatter","splatter_Right",9);
		RightSplatter.Move(0,0);
		currentnumber=1;
}

function initSplatterSlide_Left_close()
{
		var initpath = document.getElementById("splatter_Left");
		initpath.style.left="0px"
		initpath.style.top="0px"
		LeftSplatter = new JSTween("LeftSplatter","splatter_Left",7);
		LeftSplatter.Move(-5000,0);
		currentnumber=1;
}

function initSplatterSlide_Right_close()
{
		var initpath = document.getElementById("splatter_Right");
		initpath.style.right="0px"
		initpath.style.top="0px"
		RightSplatter = new JSTween("RightSplatter","splatter_Right",9);
		RightSplatter.Move(-1000,0);
		currentnumber=1;
	
}