$(document).ready(function(){	
	
	// hide all reveals
	$('div.toggle, section.toggle, li.toggle, ul.toggle').hide();
		
	// toggle reveals
	$('a.toggle').toggle(function(){
		var toggle = $(this).parent().next('div.toggle, section.toggle, li.toggle, ul.toggle');
		toggle.fadeIn();
	}, function(){
		$(this).parent().next().fadeOut();
	});			

	// anti spam emails
	$('a.email_replace_low').nospam({
		replaceText: true,
		filterLevel:'low'
	});

	$('a.email_low').nospam({
		filterLevel:'low'
	});
			
});	
	
	
  

