window.onload = function() {
var t = document.getElementById('thumbs');
if (t!=null) {
var d = document.createElement('div');
var p1 = document.createElement('p');
var p2 = document.createElement('p');
d.id = "main";
p1.id = "lrg";
p2.id = "txt";
d.appendChild(p1);
d.appendChild(p2);
document.getElementById('page').appendChild(d);
hello(t.getElementsByTagName('a')[0]);
}
}

function hello(x) {
document.getElementById('lrg').innerHTML = '<img src="img/'+document.getElementsByTagName('body')[0].id+'/'+x.className+'.jpg" alt="loading..." />';
document.getElementById('txt').innerHTML = x.getElementsByTagName('img')[0].getAttribute('alt');
}
