jQuery(document).ready(function() {
	// do something here
	
	
		   // use this to reset a single form
		   $("#reset").click(function() {
		     $('#capabilities').val('any');
		     $('#CSName').val('any');
		     $('#CSTypes').val('any');
		     $('#labels').val('any');
		     $('#organism').val('any');
		     $('#spec').val('any');
		   });
		   
		 $(".ajaxTypes").each(function(){
			 var id=$(this).attr("id");
			 if((id!="udefined")&&(id!="")){
			 $(this).load("types.jsp"+"?id="+id );
			 
			 }
		 });
		 
		 
		 $(".click").click(function(){
		 		
		 		$(this).next().toggleClass("ajaxTypesLarge");
		 		//$(this).next().slideToggle();
		 		}
		 	);
//css({ position: 'absolute' })
		   
		   
		  //$(".ajaxTypes").hover(function() {
			//     $(this).load("types.jsp"+"?id="+$(this).attr("id") );
			// },function(){
			//  $(this).text("");
			// });
		 
});