$(document).ready(function(){
	$('a.hider').css('text-decoration', 'none');	$('a.hider').css('border-bottom','1px dashed');	$('.hider a').css('text-decoration', 'none');	$('.hider a').css('border-bottom','1px dashed');	$('.hider').each(function(){		$(this).next().hide();	});	$('.hider').click(function(){		if($(this).next().css('display')=='none'){			$(this).next().slideDown(200);		} else {			$(this).next().slideUp(200);		}		return false;	});});

