window.addEvent('domready', function() {
	var pictures = $$('div#widget-instantpic div.picture');
	$each(pictures, function(picture) {
		var comment = picture.getElement('div.comment');
		var date = comment.get('html').toString();
		comment.fade('hide');
		picture.setStyle('cursor', 'pointer');
		picture.addEvent('mouseover', function() {
			comment.fade(0.65);
		});
		picture.addEvent('mouseout', function() {
			comment.fade('out');
		});
		picture.addEvent('click', function() {
			window.location = 'instantpic.php?date=' + date;
		});
		var day = date.substring(6, 8) + '<br />';
		var month = date.substring(4, 6) + '<br />';
		var year = date.substring(0, 4) + '<br />';
		comment.set('html', day+month+year);
	});
});
