<!--//
var now   = new Date();
var month = "";
var year  = "";
var day  = "";
var date  = now.getDate();

if (now.getMonth() == 0) month = "Ocak"
if (now.getMonth() == 1) month = "Şubat"
if (now.getMonth() == 2) month = "Mart"
if (now.getMonth() == 3) month = "Nisan"
if (now.getMonth() == 4) month = "Mayıs"
if (now.getMonth() == 5) month = "Haziran"
if (now.getMonth() == 6) month = "Temmuz"
if (now.getMonth() == 7) month = "Ağustos"
if (now.getMonth() == 8) month = "Eylül"
if (now.getMonth() == 9) month = "Ekim"
if (now.getMonth() == 10) month = "Kasım"
if (now.getMonth() == 11) month = "Aralık"

if (now.getDay() == 0) day = "Pazar"
if (now.getDay() == 1) day = "Pazartesi"
if (now.getDay() == 2) day = "Salı"
if (now.getDay() == 3) day = "Çarşamba"
if (now.getDay() == 4) day = "Perşembe"
if (now.getDay() == 5) day = "Cuma"
if (now.getDay() == 6) day = "Cumartesi"

document.write(date + " " + month + " " + now.getFullYear() + ", " + day)
//-->