$(function() {
	//slidetoggle
	$('.toggler').click(function(){
		$(this).parents(".articleRight").children('.toggleMe').slideToggle('slow');
		return false; //ensures no anchor jump
	});
});
