//from here on out are the functions I would put in its own place but IE only lets me load 1 script?!
function Expandy(conID)
   {
     var con = document.getElementById('first');
     con.style.height = '2in';
     con.style.width = '3in';
     con.innerHTML = "big";
   }
	   
function Shrinky(conID)
  {
    var con = document.getElementById(conID);
    con.innerHTML = "small";
    con.style.height = '1in';
    con.style.width = '1in';
    }
