
function m_show(id) {
			document.getElementById(id).style.display = "block";
		}
		function m_hide(id) {
			document.getElementById(id).style.display = "none";
		}
		function startclock()
		{
			var thetime=new Date();

			var nhours=thetime.getHours();
			var nmins=thetime.getMinutes();
			var nsecn=thetime.getSeconds();
			var AorP=" ";

			if (nhours==0)
				nhours=12;

			if (nsecn<10)
				nsecn="0"+nsecn;

			if (nmins<10)
				nmins="0"+nmins;
			
			document.getElementById("clockspot").value=nhours+":"+nmins+":"+nsecn+" "+AorP;

			setTimeout('startclock()',1000);

		} 

window.addEvent('domready',function(){
		//var V1 = new viewer($$('#box1 span)')).play(true);
		//mode: ['top','bottom','alpha']
		
		var V1 = new viewer($$('#box1 img)'),{
			mode: ['alpha']
		}).play(true);

				
		});	
