﻿/* ---------------------------------------------------------------------

SusQtech FAQ Web Part Show/Hide Functionality
Written by SusQtech
www.susqtech.com

* requires: 
	jQuery 1.3.2 or later

--------------------------------------------------------------------- */
/*
$(document).ready(function() {

	// loop each faq 
    $("a[class='NATPClassifiedAdCategoryGroupShowHideLink']").each(function() {    	
    	// add the click to show/hide the group ads
    	$(this).click(function(event) {
    	    $(this).parent().parent().find("div[class='NATPClassifiedAd']").toggle();
    		event.preventDefault();	
    	});    	
	});
});
*/
