$(document).ready(function() {
						   $('p:eq(2)').hide();
						   $('a.more').click(function() {
     						  $('p:eq(2)').animate({opacity:'toggle'}, 'slow');
							var $link = $(this);
							if ($link.text() == "read more...") {
								$link.text('read less');
							} else {
								$link.text('read more...');
							}
							return false;
						});  //end of 

						  /* var $firstPara = $('p:eq(2)');
						   $firstPara.hide();
						   $('a.more').click(function() {
							$firstPara.slideToggle('slow');
							var $link = $(this);
							if ($link.text() == "read more...") {
								$link.text('read less');
							} else {
								$link.text('read more...');
							}
							return false;
						}); */ //end of 

						/*var $firstPara = $('p:eq(2)');
						   $firstPara.hide();
						   $('a.more').click(function() {
							if ($firstPara.is(':hidden')) {
								$firstPara.fadeIn('slow');
								$(this).text('read less');
							} else {
								$firstPara.fadeOut('slow');
								$(this).text('read more...');
							}
							return false;
						}); */ //end of 
						   
	
}); // end of ready()
