/***********************************************
* Daily iframe content II- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/

var ie_pod=document.all&&navigator.userAgent.indexOf("Opera")==-1;
var dom_pod=document.getElementById&&navigator.userAgent.indexOf("Opera")==-1;

//Specify IFRAME display attributes
var iframeprops_pod='width=240 height=361 marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"';

//Specify 31 URLs to display inside iframe, one for each day of the current month
//If this month has less than 31 days, the last few URLs won't be used.
var daycontent=new Array();
	daycontent[1]="pic_of_the_day/daily01.jpg";
	daycontent[2]="pic_of_the_day/daily02.jpg";
	daycontent[3]="pic_of_the_day/daily03.jpg";
	daycontent[4]="pic_of_the_day/daily04.jpg";
	daycontent[5]="pic_of_the_day/daily05.jpg";
	daycontent[6]="pic_of_the_day/daily06.jpg";
	daycontent[7]="pic_of_the_day/daily07.jpg";
	daycontent[8]="pic_of_the_day/daily08.jpg";
	daycontent[9]="pic_of_the_day/daily09.jpg";
	daycontent[10]="pic_of_the_day/daily10.jpg";
	daycontent[11]="pic_of_the_day/daily11.jpg";
	daycontent[12]="pic_of_the_day/daily12.jpg";
	daycontent[13]="pic_of_the_day/daily13.jpg";
	daycontent[14]="pic_of_the_day/daily14.jpg";
	daycontent[15]="pic_of_the_day/daily15.jpg";
	daycontent[16]="pic_of_the_day/daily16.jpg";
	daycontent[17]="pic_of_the_day/daily17.jpg";
	daycontent[18]="pic_of_the_day/daily18.jpg";
	daycontent[19]="pic_of_the_day/daily19.jpg";
	daycontent[20]="pic_of_the_day/daily20.jpg";
	daycontent[21]="pic_of_the_day/daily21.jpg";
	daycontent[22]="pic_of_the_day/daily22.jpg";
	daycontent[23]="pic_of_the_day/daily23.jpg";
	daycontent[24]="pic_of_the_day/daily24.jpg";
	daycontent[25]="pic_of_the_day/daily25.jpg";
	daycontent[26]="pic_of_the_day/daily26.jpg";
	daycontent[27]="pic_of_the_day/daily27.jpg";
	daycontent[28]="pic_of_the_day/daily28.jpg";
	daycontent[29]="pic_of_the_day/daily29.jpg";
	daycontent[30]="pic_of_the_day/daily30.jpg";
	daycontent[31]="pic_of_the_day/daily31.jpg";

//No need to edit after here
document.write('<iframe id="picture_of_the_day" '+iframeprops_pod+'></iframe>');

var mydate=new Date();
var mytoday=mydate.getDate();

function dayofmonth_iframe(){
	var iframeobj_pod=document.getElementById("picture_of_the_day");
	iframeobj_pod.src=daycontent[mytoday];
}
onload=dayofmonth_iframe();