function slide_container(componentObj, newValue, newPosition)
{
	if(componentObj.direction == 1)
		document.getElementById('slide_container').style.top = '-'+newValue+'px';
	else
		document.getElementById('slide_container').style.left = '-'+newValue+'px';
}
