<!-- 
$(document).ready( function () {
	$(".slideToggle").hover(
		function () {
			$(this).css('cursor','pointer');
		},
		function () {
			$(this).css('cursor','auto');
		}
	);
	$(".faq p").hide();
	$(".slideToggle").click(function () {
   		$(this).next("p").slideToggle();
   		if ($(this).text()=='[+] ') {
   			$(this).text('[-] ');
   			}
   		else if ($(this).text()=='[-] ') {
   			$(this).text('[+] ');
   			}
   		
	});

});
--> 

