


<!-- Hide script from old browsers
//
// Pic of the day script
// By Mike Anderson aka "Gumby"
// (c) 2001, 2002 by Mike Anderson.
//
// Images rotate with the day of the month.
// Supports thumbnails.
// Support for captions being added.
// - Gumby
// If you dont have enough images you can just repeat some, till you do.
//
// Add the script to the HEAD section and call it as follows:
// <script>Pic_of_the_day();</script>
//

// This is it. Call this function from your page where you want the pic to appear.
function Pic_of_the_day(){
// Declare Local Variables
   var dateobj = new Date();
   var dayofthemonth;
   var thumbs = new Array(31);
   var pics = new Array(31);

// Image Thumbnails. usually 120x90 (case Matters!!)
thumbs[1]="../shop/products/tp001dx_sm.jpg";
thumbs[2]="../shop/products/tp002cd_sm.gif";
thumbs[3]="../shop/products/tp003dx_sm.jpg";
thumbs[4]="../shop/products/tp004dx_sm.jpg";
thumbs[5]="../shop/products/tp005ck_sm.jpg";
thumbs[6]="../shop/products/tp006ck_sm.jpg";
thumbs[7]="../shop/products/tp007sy_sm.jpg";
thumbs[8]="../shop/products/tp008sy_sm.jpg";
thumbs[9]="../shop/products/tp009sy_sm.jpg";
thumbs[10]="../shop/products/tp010ck_sm.jpg";
thumbs[11]="../shop/products/tp011sy_sm.jpg";
thumbs[12]="../shop/products/tp012sy_sm.jpg";
thumbs[13]="../shop/products/tp001dx_sm.jpg";
thumbs[14]="../shop/products/tp002cd_sm.gif";
thumbs[15]="../shop/products/tp003dx_sm.jpg";
thumbs[16]="../shop/products/tp004dx_sm.jpg";
thumbs[17]="../shop/products/tp005ck_sm.jpg";
thumbs[18]="../shop/products/tp006ck_sm.jpg";
thumbs[19]="../shop/products/tp007sy_sm.jpg";
thumbs[20]="../shop/products/tp008sy_sm.jpg";
thumbs[21]="../shop/products/tp009sy_sm.jpg";
thumbs[22]="../shop/products/tp010ck_sm.jpg";
thumbs[23]="../shop/products/tp005ck_sm.jpg";
thumbs[24]="../shop/products/tp006ck_sm.jpg";
thumbs[25]="../shop/products/tp007sy_sm.jpg";
thumbs[26]="../shop/products/tp008sy_sm.jpg";
thumbs[27]="../shop/products/tp009sy_sm.jpg";
thumbs[28]="../shop/products/tp001dx_sm.jpg";
thumbs[29]="../shop/products/tp002cd_sm.gif";
thumbs[30]="../shop/products/tp003dx_sm.jpg";
thumbs[31]="../shop/products/tp004dx_sm.jpg";

// Full sized Images (case matters!!)
pics[1]="../shop/10Browse.asp";
pics[2]="../shop/10Browse.asp";
pics[3]="../shop/10Browse.asp";
pics[4]="../shop/10Browse.asp";
pics[5]="../shop/10Browse.asp";
pics[6]="../shop/10Browse.asp";
pics[7]="../shop/10Browse.asp";
pics[8]="../shop/10Browse.asp";
pics[9]="../shop/10Browse.asp";
pics[10]="../shop/10Browse.asp";
pics[11]="../shop/10Browse.asp";
pics[12]="../shop/10Browse.asp";
pics[13]="../shop/10Browse.asp";
pics[14]="../shop/10Browse.asp";
pics[15]="../shop/10Browse.asp";
pics[16]="../shop/10Browse.asp";
pics[17]="../shop/10Browse.asp";
pics[18]="../shop/10Browse.asp";
pics[19]="../shop/10Browse.asp";
pics[20]="../shop/10Browse.asp";
pics[21]="../shop/10Browse.asp";
pics[22]="../shop/10Browse.asp";
pics[23]="../shop/10Browse.asp";
pics[24]="../shop/10Browse.asp";
pics[25]="../shop/10Browse.asp";
pics[26]="../shop/10Browse.asp";
pics[27]="../shop/10Browse.asp";
pics[28]="../shop/10Browse.asp";
pics[29]="../shop/10Browse.asp";
pics[30]="../shop/10Browse.asp";
pics[31]="../shop/10Browse.asp";

// get the date
dayofthemonth = dateobj.getDate();
// Do it!!
document.write('<a href="',pics[dayofthemonth],'" target="_blank"><img src="',thumbs[dayofthemonth],'" width="120" height="90" border="0"></a>');
}
// Done hiding -->







