function showhide(obj) {
document.getElementById("content1").style.height="100%";
obj = obj.parentNode;
obj.className = obj.className == "first" ? "first show" : "first";
}
 