<!-- start code-->
<!--- Script to rotate images based on day of month or day of the year  --->
<!-- // code Edited by JT -->
<!-- // Thank You JT -->
<!-- // code Modified by Thighluver -->
 var dt = new Date();
 var hr = dt.getDate();  //  1-31 day of the month
 var msg="<IMG SRC=http://www.playboygirls.com/PODSB/photos/"+hr+".jpg border=\"0\" width=\"133\" height=\"200\" class=\"image\" alt=\"Playboy Student Bodies\">";
 document.write(msg);    //returns image30.jpg for 30th day of month
 //http://www.playboygirls.com/PODSB/photos/20.jpg
<!-- end code--> 