function timer(id) {
	document.getElementById(id).style.backgroundPosition='bottom left';
	document.getElementById('ssmenu').innerHTML = "<ul><li>&nbsp;</li></ul><br class=\"spacer2\" />";
}

function display(id, count){
		for(i=1;i<=count;i++){
		id_temp = id+'_'+i;
		//alert(id_temp);
		var textObj = document.getElementById(id_temp);
		if (textObj.style.display == "none")
			textObj.style.display = "block";
		else textObj.style.display = "none";
	}
}

function display_none(id){
		var textObj = document.getElementById(id);
		textObj.style.display = "none";
}	