I got up before dawn yesterday and started playing with my new camera. I took pictures all day long and into the night. I ended up with 302 pictures by the end of the evening, several of which I’ll even keep. The battery was worn down, but the 2Gb memory card in the camera indicated that I could’ve taken over 800 more shots!
The first thing I’ve learned is that this camera (with the 2Gb flash card) holds a lot of pictures! I was just playing around to see how the camera worked, so I wasn’t really extending myself for great shots. I was shooting “large” pictures in “normal” mode, and I like the quality of the images enough for web publishing. However, I’ll definitely be shooting at “fine” quality in the future, and that means I’ll only be able to capture about 582 images with an empty card!
I realize this is a bit sloppy, but I don’t have a lot of time right now. Here are a few of the pictures I took. I didn’t do much in Photoshop with these images except resize, crop and optimize them for the web.





I like the second pic from the top …:)
hi Ian,
Here the code for the time and date….hope useful for your homepage …
12) ? Cur12Hour – 12 : Cur12Hour;
The12Time += ((Cur12Mins 12) ? ‘ PM’: ‘ AM’;
document.CForm.Clock12.value = The12Time;
window.status = The12Time;
setTimeout(‘StartClock12()’,1000);
}
function StartDate() {
TDay = new Array(‘Sunday’, ‘Monday’, ‘Tuesday’, ‘Wednesday’, ‘Thursday’, ‘Friday’, ‘Saturday’);
TMonth = new Array(‘January’, ‘February’, ‘March’, ‘April’, ‘May’, ‘June’, ‘July’, ‘August’, ‘September’, ‘October’, ‘November’, ‘December’);
TDate = new Date();
CurYear = TDate.getYear();
CurMonth = TDate.getMonth();
CurDayOw = TDate.getDay();
CurDay= TDate.getDate();
TheDate = TDay[CurDayOw] + ‘, ‘;
TheDate += TMonth[CurMonth] + ‘ ‘;
TheDate += CurDay + ‘, ‘;
TheDate += ((CurYear%1900)+1900);
document.CForm.CDate.value = TheDate;
}
// done hiding –>