function fnStartDate(){

	setInterval("fnSetTime()","500")

}

function fnSetTime(){

	// SET THE TIME
	
	today = new Date();
	hours = today.getHours();
	
		if (hours > 12){
		hours = hours - 12;	
		}
	
	minutes = today.getMinutes();
	
		if (minutes < 10){
		minutes = "0" + minutes;
		}
		
	seconds = today.getSeconds();
	
		if (seconds < 10){
		seconds = "0" + seconds
		}
		
	var updated_time = hours + ":" + minutes + ":" + seconds;
		
	// SET THE DATE
	
	var date = new Date();
	var thisDay = date.getDay();
	var thisDate = date.getDate();
	var thisYear = date.getFullYear();
	var thisMonth = date.getMonth();
	
	if(thisDate < 10) {
	
	thisDate = "0" + thisDate;
	
	}
	
	// CONVERTED TO STRING
	thisYear += "";
	
	var currentMonth = new Array("01","02","03","04","05","06","07","08","09","10","11","12");
	var currentDay = new Array("Sun","Mon","Tue","Wed","Thu","Fri","Sat");
	
	var updated_date = thisDate + "." + currentMonth[thisMonth] + "." + thisYear.substring(2,4);
	
	// UPDATE DIV
	
	document.getElementById("HeaderDate").innerHTML = updated_time + "/ " + updated_date + " : London Time";
	
	updated_time = "";
	updated_date = "";
	
}