﻿function getDateTime() {
    var now = new Date();
    var hour = now.getHours();
    var minute = now.getMinutes();
    var second = now.getSeconds();
    var monthnumber = now.getMonth();
    var monthday = now.getDate();
    var year = now.getYear();
    if (hour < 10) hour = "0" + hour;
    if (minute < 10) minute = "0" + minute;
    if (second < 10) second = "0" + second;

    //$(".saat_tarih").html(monthday + "." + monthnumber + "." + year + " / " + hour + "." + minute + "." + second);
    $(".saat_tarih").html(hour + ":" + minute + ":" + second);

}

$(document).ready(function () {

    setInterval(getDateTime, 1000);

});


//$(document).ready(function () {

//    $("#buyukManset img").attr("src", $(".mansetKucuk").eq(0).attr("href"));

//    $(".mansetKucuk").mouseover(function () {

//        var resimAdres = $(this).attr("href");

//        $("#buyukManset img").attr("src", resimAdres);

//    });

//});
