jQuery(document).ready(function() {
	// do something here
   
 $("manifest").toggle(function(){
 	 $(this).addClass('highlight').addClass('touched');
     $(this).next().show('slow');
	 return false;
   },function(){
   	 $(this).removeClass('highlight').removeClass('touched');
     $(this).next().hide('fast');
	 return false;
   });
  
   $("manifest").hover(function() {
     $(this).addClass("hand").addClass('highlight');
   },function(){
     $(this).removeClass("hand");
	 $(this).not(".touched").removeClass("highlight");
   });
   
  $(".xlatent").click(function(){
     $(this).hide('slow');
	 $(".highlight").removeClass("highlight"); 
	 return false;
   });

});