// JavaScript Document
function updateStyle()
{
	totalOpen=0;
	var scroller  = null;
	var scrollbar = null;
	scroller  = new jsScroller(document.getElementById("Scroller-1_nextfilm"), 300, 300);
	scrollbar = new jsScrollbar (document.getElementById("Scrollbar-Container_nextfilm"), scroller, false);
}

function updateStyle2(indice)
{
	newHeight=parseInt(currentHeight)+110;
	document.getElementById("content_nextfilm").style.height=newHeight+'px';
	var scroller  = null;
	var scrollbar = null;
	scroller  = new jsScroller(document.getElementById("Scroller-1_nextfilm"), 300, 300);
	scrollbar = new jsScrollbar (document.getElementById("Scrollbar-Container_nextfilm"), scroller, false);
	scrollPosition=indice*100;
	scrollbar.scrollTo(0,scrollPosition);
}

function updateStyle3(indice)
{

	newHeight=parseInt(currentHeight)-110;
	document.getElementById("content_nextfilm").style.height=newHeight+'px';
	var scroller  = null;
	var scrollbar = null;
	scroller  = new jsScroller(document.getElementById("Scroller-1_nextfilm"), 300, 300);
	scrollbar = new jsScrollbar (document.getElementById("Scrollbar-Container_nextfilm"), scroller, false);
	scrollPosition=indice*100;
	scrollbar.scrollTo(0,scrollPosition);
}
