$(document).ready(function() 
{
	$('#doctors .doctor .content .readmore').click(function()
	{
		$(this).parent().parent().find('.cv').slideToggle(200);
		
		if ($(this).text()== "Read more") {
			$(this).text("Close");
			status = false;
		}
		else{
			$(this).text("Read more");
			status = true;
		}
		return false;
		
	});
});