(function($){
	
	$.showhidedetails = function(){
		if($(this).hasClass('showmore')){
			$(this).addClass('showless')
			.find('.bio').animate({ 
			height: $(this).data('height')
			 }, 300 )
			$(this).removeClass('showmore')
			}
		else{
			$(this).addClass('showmore')
			.find('.bio').animate({ 
			height: 85
			 }, 300 )
			$(this).removeClass('showless')
			}	
	};
	
	
	
	//================================================
	// document load

	$(function(){
	
	// remove noscript class
	$('body').removeClass('noscript');
	
	$('.act').each(function(){
		$(this).addClass('showmore')
		.mousedown($.showhidedetails)
		.data('height',$(this).find('.bio').height())
		.find('.bio').height(85)
	});
	// share button
	$('.s-share-button')
	.click(function(){return addthis_sendto();})
	.mouseover(function(){return addthis_open(this,'','[URL]','[TITLE]');})
	.mouseout(function(){addthis_close();});
	
	})
		
	
})(jQuery);
	
	var addthis_pub="freestonecreative";
	var addthis_brand = "MK POTP";
	var addthis_header_color = "#ffffff";
	var addthis_header_background = "#000000";
	var addthis_offset_top = -40;