// JavaScript Document

//toggle content
$(document).ready(function(){
	$('a.more').click(function()
	  {
		$(this).next().toggle("normal");
		$(this).toggleClass('open');
		return false;
	  }
	);
	
});
 
 



