var currentFile = "";
var currentItem = 0;
var previousItem = -1;

/**
 * init function. Called by <body onLoad="init()">
 */
function init() {
	createImageRotator()
}

/**
 * createImageRotator function creates image rotator object
 */
function createImageRotator() {
	var s1 = new SWFObject("/eatacd/script/imagerotator.swf", "rotator", "736",
			"106", "7");
	s1.addParam("allowfullscreen", "false");
	s1.addVariable("file", "/media/xml/image-rotator.xml");
	s1.addVariable("width", "736");
	s1.addVariable("height", "106");
	s1.write("imageholder");
}

/**
 * createWindow2 function opens radio eac playlist in another window.
 */
var popWin = null;
function createWindow2(theUrl) {
	popWin = window
			.open(
					theUrl,
					"tasters",
					"width=500,height=600,left=100,top=200,resizable=yes,status=yes,toolbar=no,menubar=no,location=no");
	popWin.focus();
}
