$(document).ready(function() {
	
	$("#header").corner("top 12px");
	$('#footer').corner("bottom 12px");

	$(".accordion").accordion( {
				autoHeight: false
				});
	
	//define config object
	var accOpts = {
			autoHeight: 	false,
			navigation: 	true,
			collapsible:	true,
			header: 		".condition-header",
			//add change event callback
			 changestart: function(event, ui) {
		$(ui.oldContent).fadeOut("fast");
		},
		   change: function(e, ui) {
			$(ui.newContent).fadeIn("slow");
		     }
	};
	
	$("#conditions-items").accordion(accOpts);

	
 $('.bio-item p').truncate( 560,{
     //chars: /\s/,
     trail: [ " <a href='#' class='truncate_show'>&raquo; More</a>", " <a href='#' class='truncate_hide'>&laquo; Less</a>" ]
 });
 
 $('.testimonial p:nth-child(2)').truncate( 352 ,{
     //chars: /\s/,
     trail: [ " ...<br /><a href='#' class='truncate_show'>&raquo; More</a>", " ...<br /><a href='#' class='truncate_hide'>&laquo; Less</a>" ]
 });



});
