$(document).ready(function(){

//show javascript print link
  	$('.filters .print').removeClass('hide');


// choose text for the show/hide link
var showText="[+] ";
var hideText="[-] ";



$(".question").prepend('<a href="#" class="more-link">'+showText+'</a>');



$('.answer').addClass('answerStyle').hide();

$('.question').click(function() {
	$(this).toggleClass('questionOpen');							
	$(this).next('.answer').slideToggle('slow');
});


$('.question').click(function() {							
	if ($(this).find('a').text()==showText) {
	$(this).find('a').text(hideText);
	}
	else {
	$(this).find('a').text(showText);
	}
	return false;
});



});