$(document).ready(function(){
		$("div.hideto").click(function() {
				if ($(this).height() == 18) {
						$(this).animate({height: 200}, 500);
						}
						else {
       				 	$(this).animate({height: 18}, 500);
						

						}
        });
      });

