// JavaScript Document
//    $(function() {
//          $("#verti").click(function() {
 //               $("#verti").animate({ height: "530px" }, 1000);
//            });
   
 //       });
$(function() {
$("#verti").click(function() {
	 obj=document.getElementById('verti');
	 if (obj.style.height=="530px") {
		$("#verti").animate({ height: "230px" }, 1000);
	 }
	 else {
	  $("#verti").animate({ height: "530px" }, 1000);
	 }
});
});


