//--- Bosson Design -------------------
//--- window.onload = init for gallery.js
//--- this covers footer positioning; gallery events, including emale switcher;
window.onload = init;
function init() {
			setFooter();
      	lowresResize();
      	//-- set up mouse events --
      	document.getElementById('thumbtable').onmouseover = hideInstructions;
      	document.getElementById('t01').onmouseover = show01;
      	document.getElementById('t02').onmouseover = show02;
      	document.getElementById('t03').onmouseover = show03;
      	document.getElementById('t04').onmouseover = show04;
      	document.getElementById('t05').onmouseover = show05;
      	document.getElementById('t06').onmouseover = show06;
      	document.getElementById('t07').onmouseover = show07;
      	document.getElementById('t08').onmouseover = show08;
      	document.getElementById('t09').onmouseover = show09;
      	document.getElementById('t10').onmouseover = show10;
      	document.getElementById('t11').onmouseover = show11;
      	document.getElementById('t12').onmouseover = show12;
      	document.getElementById('t01').onmouseout = gray01;
      	document.getElementById('t02').onmouseout = gray02;
      	document.getElementById('t03').onmouseout = gray03;
      	document.getElementById('t04').onmouseout = gray04;
      	document.getElementById('t05').onmouseout = gray05;
      	document.getElementById('t06').onmouseout = gray06;
      	document.getElementById('t07').onmouseout = gray07;
      	document.getElementById('t08').onmouseout = gray08;
      	document.getElementById('t09').onmouseout = gray09;
      	document.getElementById('t10').onmouseout = gray10;
      	document.getElementById('t11').onmouseout = gray11;
      	document.getElementById('t12').onmouseout = gray12;
      	document.getElementById('viewedimage').onmousedown = origImg;	      	
    		setTimeout('loadImages()',200);	
      	document.getElementById('addresstrigger').onmouseover = changePseudolink;//for emale link
		}
window.onresize = function() {
			setFooter();
}

