﻿/* ---------------------------------------------------------------------

SusQtech Affiliate Deails 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[id ^='NATPDealsViewDetails_']").each(function() {    	
    	// add the click to show/hide answer
    	var id = $(this).attr("id").replace("NATPDealsViewDetails_","");
    	$(this).click(function(event) {
    	    $("div[id ='NATPDeal_"+id+"']").toggle();
    		event.preventDefault();	
    	});    	
	});
});

