<!--
// please keep this text when you copy the source code
// made by Ragecreations version 0.2

//Get Date
var months=new Array(13);
months[1]="Ocak";
months[2]="Şubat";
months[3]="MarT";
months[4]="Nisan";
months[5]="Mayıs";
months[6]="Haziran";
months[7]="Temmuz";
months[8]="Ağutos";
months[9]="Eylül";
months[10]="Ekim";
months[11]="Kasım";
months[12]="Aralık";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000) 
year = year + 1900; 

//Get Time
var now = new Date();
var hours = now.getHours();
var minutes = now.getMinutes()
var timeValue = "" + ((hours >12) ? hours -12 :hours)
if (timeValue == "0") timeValue = 12;
timeValue += ((minutes < 10) ? ":0" : ":") + minutes
timeValue += (hours >= 12) ? " pm" : " am"

//Get Day
var days=new Array(7);
days[0]="Pazar";
days[1]="Pazartesi";
days[2]="Salı";
days[3]="Çarşamba";
days[4]="Perşembe";
days[5]="Cuma";
days[6]="Cumartesi";
var lday = days[time.getDay()];

//-->

