﻿blog_list = new Array("2008111120081110012817.xml");photo_list = new Array();
xx = 0;
dd = new Date();
yy = dd.getYear();
mm = dd.getMonth() + 1;
dd = dd.getDate();
if (yy < 2000) { yy += 1900; }
if (mm < 10) { mm = "0" + mm; }
if (dd < 10) { dd = "0" + dd; }
var today = yy +""+ mm  +""+ dd;
count = 0;
for(i=0; i<blog_list.length; i++){
check = blog_list[i].substring(0,8);
if(check<=today){
photo_list[count] = blog_list[i];
count ++;
}
}function photoFunc(id)
{
if(!document.getElementsByTagName){return false;}
xx = xx + id;
if(xx<0){xx = 0;}
if(xx>photo_list.length){xx = photo_list.length;}
$("#photo_blog0").load("blog/"+photo_list[xx]);
return false;
}