// JavaScript Document
function imageSwap() {
	var imageCollection = document.getElementsByTagName('img');
	var total = imageCollection.length-1;
	for(i=0;i<=total;i++) {
		imageCollection[i].setAttribute('onclick', 'PicLensLite.start({feedUrl:"http://api.flickr.com/services/feeds/photos_public.gne?id=8807144@N06&lang=en-us&format=rss_200"})');	
	}
}