$(document).ready(function () {
    //add back to top links for faqs page
    $(".faqList li .faqAnswer").each(function () {$(this).html($(this).html()+"<br/><a href='#top' class='topLink'>Back to Top</a>");});

	//apply correct cursor on hover over faqs
	$(".faqList li .faqQuestion").hover(function () {$(this).css('cursor', 'pointer');});

    //shows\hides faq answers
    $(".faqList li").click(function () {$(this).children(".faqAnswer").slideToggle("medium");});
});

