<!-- start code-->
<!--- Script to rotate images based on day of month or day of the year  --->
<!-- // code Edited by JT -->
 var dt = new Date();
 var hr = dt.getDate();  //  1-31 day of the month
 var msg="<IMG SRC=http://www.playboygirls.com/PODFF/photos/"+hr+".jpg border=\"0\" width=\"335\" height=\"503\" class=\"image\" alt=\"Playboys Fresh Faces\" align=\"right\">";
 document.write(msg);    //returns image30.jpg for 30th day of month
<!-- end code-->