function changeTime(sel){
	
		var el = document.getElementById("ticker");
		el.showSong(sel);
		//var str = "";
		//for(var props in el){
		//str += props + " : " + el[props] + " ..... ";
		//}		
	}
	function writeOptions(txt){
	//	alert(txt);
		//style='background-color:#e5d86b;margin-top:1px;margin-left:10px;width:80px;' onchange='changeTime(tickercb);'
		var arr = txt.split(",");	
		var html = "<select title='"+arr[0]+"' name='timeslot' class='customselect' id='customselector'>";
		
		
		
		//var html = "<form action='' style='width:60px;' name='tickercb' method='get'><select name='timeslot' class='customselect' id='customselector'>";
		for(var i=0;i<arr.length;i++){
			html += "<option value='" + arr[i] + "' title='Title here'>" + arr[i] + "</option>";
		}
		html +="</select>";
		var el = document.getElementById("optionsholder");
		//alert(el);
		
		//alert(el);
		var str = "";
		for(var props in el){
			str += props + " : " + el[props] +"\n";
		}
		//alert(str);
		//var el = document.getElementById("customselector");
		//alert(el);
	//	alert(el.innerHTML);
		el.innerHTML = html;
		$('#customselector').customSelect();
		//alert(el.innerHTML);
		
}