function Dateimg(){
    var dtToday = new Date;
    var strYear;
    var strMonth;
    var strDate;
    var strPicture = new Array(
    "http://www.cyzowoman.com/shared/img/cw_0.jpg",
    "http://www.cyzowoman.com/shared/img/cw_1.jpg",
    "http://www.cyzowoman.com/shared/img/cw_2.jpg",
    "http://www.cyzowoman.com/shared/img/cw_3.jpg",
    "http://www.cyzowoman.com/shared/img/cw_4.jpg",
    "http://www.cyzowoman.com/shared/img/cw_5.jpg",
    "http://www.cyzowoman.com/shared/img/cw_6.jpg",
    "http://www.cyzowoman.com/shared/img/cw_7.jpg",
    "http://www.cyzowoman.com/shared/img/cw_8.jpg",
    "http://www.cyzowoman.com/shared/img/cw_9.jpg"
    );
    
    var Week = new Array(
    "http://www.cyzowoman.com/shared/img/cw_sun.jpg",
    "http://www.cyzowoman.com/shared/img/cw_mon.jpg",
    "http://www.cyzowoman.com/shared/img/cw_thu.jpg",
    "http://www.cyzowoman.com/shared/img/cw_wed.jpg",
    "http://www.cyzowoman.com/shared/img/cw_tue.jpg",
    "http://www.cyzowoman.com/shared/img/cw_fri.jpg",
    "http://www.cyzowoman.com/shared/img/cw_sat.jpg"
    );
    
    strYear  = dtToday.getFullYear();
    strMonth = dtToday.getMonth() + 1;
    strDate  = dtToday.getDate();
    strWeek  = dtToday.getDay();
    
    if (strMonth < 10){strMonth = "0" + strMonth;}
    if (strDate < 10){strDate = "0" + strDate;}
    
    var imgYear, imgMonth, imgDate, imgWeek;
    imgYear  = strYear.toString();
    imgMonth = strMonth.toString();
    imgDate  = strDate.toString();
    imgWeek  = strWeek.toString();
    
    var img = "<img src='"+strPicture[imgYear.substring(0,1)]+"'>"+"<img src='"+strPicture[imgYear.substring(1,2)]+"'>"+"<img src='"+strPicture[imgYear.substring(2,3)]+"'>"+"<img src='"+strPicture[imgYear.substring(3,4)]+"'>"+"<img src='http://www.cyzowoman.com/shared/img/cw_..jpg'>" + "<img src='"+strPicture[imgMonth.substring(0,1)]+"'>"+"<img src='"+strPicture[imgMonth.substring(1,2)]+"'>"+"<img src='http://www.cyzowoman.com/shared/img/cw_..jpg'>" + "<img src='"+strPicture[imgDate.substring(0,1)]+"'>"+"<img src='"+strPicture[imgDate.substring(1,2)]+"'>"+"<img src='http://www.cyzowoman.com/shared/img/cw_..jpg'>" + "<img src='"+Week[imgWeek.substring(0,1)]+"'>";
    
    return img;

}

