function theaterShow(theaterName, showID) {
	//$("#" + theaterName	+ ".theater-slider").animate({"top": "=-200px"}, 100);
	var destTop = 420 * showID;
	$("#theater1 .theater-slider").animate({"top": "-" + destTop + "px"}, 500, "swing");
}

function initializeTheater(theaterName) {
	initializeTheaterControls(theaterName);
}

function initializeTheaterControls(theaterName) {
	//alert(theaterName);
	$("div#" + theaterName + "-controls a").each(function(i) {	
		$(this).attr("href", "javascript:theaterShow('" + theaterName +"', " + i + ")");
	});
	
}
