// ---------------- jquery fading rotation gallery ------------------
var i = 1;
function fade() {
	$('#img' + i).fadeOut(2000);
	i++;
	if (i > 6) { i = 1; }
	$('#img' + i).fadeIn(2000);
	setTimeout("fade()",6000);
}
// ---------------- jquery fading rotation gallery ------------------

// ---------------- clickable image ------------------
function fwin(pic){
	return "<html>\n" + "<head>\n" + "<title>Image</title>\n" + "<script>\n" + "function reSize() {\n" + "  var wimg = document.getElementById('lgimg');\n" + "  var wnw = wimg.width + 40;\n" + "  var wnh = wimg.height + 120;\n" + "  window.resizeTo(wnw,wnh);\n" + "}\n" + "</scr" + "ipt>\n" + "</head>\n" + "<body onLoad='reSize()'>\n" + "<center><img src='http://cp2.enter.net/~c67476x2/invent/" + pic + "' alt='' id='lgimg' vspace='6' onclick='window.close();' /></center>\n" + "</body>\n" + "</html>\n";
}

function viewLg(img){
	link = "about:blank";
	var pw = window.open(link, "image", "width=50,height=50");
	pw.document.open();
	pw.document.write(fwin(img));
	pw.document.close();
}
// ---------------- clickable image ------------------

// ---------------- iframe resize ------------------
function calcHeight() {
   //find the height of the internal page
   var fheight = document.getElementById('album').contentWindow.document.body.scrollHeight;
   //change the height of the iframe
   document.getElementById('album').height = fheight;
}
// ---------------- iframe resize ------------------


