	
	$(document).ready(function(){
	
		// Add this stylesheet for JS enabled visitors only.
				$("head").append("<link rel=\"stylesheet\" type=\"text/css\" href=\"sofap.css\" />");

		$(".more a").text("read more");

		
		// For all links with the class of 'more'.
	    $(".more a").click(function () {
		
			// Get the ID of the div we're going to show.
			var theID = $(this).parents().children('.content').attr('id');
		
		      if ($("#"+theID).is(":hidden")) {
		        $("#"+theID).slideDown("slow");
				$(this).html("close");
				$(this).addClass("open");
				$(this).blur();
		      } else {
		        $("#"+theID).slideUp();
				$(this).html("read more");
				$(this).removeClass("open");
				$(this).blur();
		      }
		
			return false;
	    });

		if(!NiftyCheck())
		    return;
		Rounded("div#testimonials-search","#fff","#f0ddfb");
	});