/* jQuery Global */
jQuery.noConflict();
jQuery(document).ready(function() {
	/*hide partial text*/
	  jQuery(".TEXTOPEN").click( function() {
		 	jQuery(this).hide();
			jQuery(this).parent().next(".HIDDEN").animate({
    		       height: 'toggle'},{ duration: 1000});
			 
  	     });
	    jQuery(".TEXTCLOSE").click( function() {
		       jQuery(".TEXTOPEN").show();
		       jQuery(this).parent(".HIDDEN").animate({
    		       height: 'toggle'},{ duration: 1000});
			 
  	     });
   
 });
    

