jQuery(document).ready(function($){
$('.spoiler_links').click(function(){
$(this).parent().children('div.spoiler_body').toggle('normal');
$(this).parent().css('background-color','#FFFFFF');
return false;
});
});
jQuery(document).ready(function($){
$('.spoiler_links').click(function(){
$(this).parent().children('div.spoiler_body').toggle('normal');
$(this).parent().css('background-color','#FFFFFF');
$('.spoiler_links').not(this).parent().css('background-color','#f5f5f5');
$('.spoiler_links').not(this).parent().children('div.spoiler_body').css('display','none');
return false;
}); });