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

	$(function(){
	
	// remove noscript class
	$('body').removeClass('noscript');
	
	$('#content-related .related-article').each(function(){
		$(this).addClass('showmore')
		.mousedown($.showhidedetails)
		.data('height',$(this).find('.snippet').height())
		.find('.snippet').height(15)
	});
	
	
	})
		
	
})(jQuery);
