var backgroundColor="threedface";

//Specify clock color
var clockColor="#2241FB";

//Specify clock font size
var fontSize="18px";


////NO NEED TO EDIT BELOW THIS LINE///
var docBody =document.getElementById("documentBody");
var displayHere=document.getElementById("display_here");
docBody.style.backgroundColor=backgroundColor;
docBody.style.color=clockColor;
docBody.style.fontSize=fontSize;

function run_clock()
{
	var Now=new Date();
	var hours=Now.getHours();
	var minutes=Now.getMinutes();
	var seconds=Now.getSeconds();
	var am_pm="PM";
	if (hours<12)
		am_pm="AM";
	if (hours>12)
		hours=hours-12;
	if (hours==0)
		hours=12;
	if (minutes<=9)
		minutes="0"+minutes;
	if (seconds<=9)
		seconds="0"+seconds;
	document.getElementById("display_here").innerHTML=hours+":"+minutes+":"+seconds+" "+am_pm;
	setTimeout("run_clock()",1000);
}
function a1()
{

document.getElementById("hello").innerHTML="123beginners.com is the Beginners websie .IT offers you all the study material for the purpose of college exame ,Interview Compitition,General awareness,entertainment,item like songs,wallpaper,chatting,blogging,and searching.Because of a lots of study material with duplicacy and for fast searching we offers u 123Beginners Search Engine It Gives you the best and easy solution for the purpose of learning and understand in the examination.<br><br>123beginners provides u more than 20,000 cof collection of wallpaper for benificial and entertainment .User can uploads own categories of wallpaper<br>Best ,Updated ,Current General Knowledge question are main focuse of the website.Any of the problem which will be solved very fast using 123beginners search engine, online chatting,and blogging, User Can Create of Own Blogs and Provides there notes to all World. 123beginners is the biggest website which provides user the create their own note online which will access all arround the world";
}
function a2()
{

document.getElementById("hello").innerHTML="hellokkkkkkkkkk";
}
function a3()
{

document.getElementById("hello").innerHTML="hellokkkkkkkkkk";
}
