// JavaScript Document
jQuery(document).ready(function($){
//questions---------
    $('h3.question').prepend('<span class="q_tag">+</span>').find('.q_tag').toggle(function(){
                    $(this).parent().next('.answer').slideDown(500);
                    $(this).text('-');
                }, function(){
                    $(this).parent().next('.answer').slideUp(500);
                    $(this).text('+');
                    });
					});
					
