﻿function showHide(elementid){
	if (document.getElementById(elementid).style.display == 'none'){
		document.getElementById(elementid).style.display = '';
	} else {
		document.getElementById(elementid).style.display = 'none';
	}
} 

function doThumbnail(id)
{
	document.write("<a href=\"http://static.flickr.com/" + id + ".jpg\"  rel=\"clearbox[gallery=Danielle Harrison]\" rel=\"clearbox[gallery=Danielle Harrison]\" title=\"\" >");
	document.write("<img src=\"http://static.flickr.com/" + id + "_s.jpg\" height=\"75\" width=\"75\" alt=\"\" class=\"photo\" /></a>");

};
