 
var $j = jQuery.noConflict();

$j(function() {

    /**
    * The Expand / Collapse FAQ Section
    */
    //Hide all the FAQ answeres by default
    $j('div.faqContent').hide();
    //Set the margin on the bottom of the questions
    $j('div.faqQuestion h4').css({ 'marginBottom': '14px' });
    //Add the expand / collapse links
    var expandCollapseHTML = '<span class="expandCollapse expand" title="View FAQs">View FAQs</span>';
    $j('div.faqQuestion').append(expandCollapseHTML);

    $j('span.expandCollapse').toggle(
		function() {
		    //Show the selected content
		    $j(this).parent().find('div.faqContent').show();
		    $j(this).removeClass('expand');
		    $j(this).text("Hide FAQs");
		},
		function() {
		    //Hide the selected content
		    $j(this).parent().find('div.faqContent').hide();
		    $j(this).addClass('expand');
		    $j(this).text("View FAQs");
		});

});
