jQuery.include('/site/files/misc/jquery-ui-1.8.16.custom.min.js');
jQuery(document).ready(function($) {
	$('.list_button').click(function() {
                var options = {};
                var selectorParent = $(this).parent();
		$(selectorParent.next('.faq_container')).toggle('blind', options, 500);
                return false;
	});
});

function toggleMediaList() {
   var url = document.location.href;
   var category = url.substr(url.indexOf('cat=') + 4, url.length);
   var catId = 0;
   var options = {};

   if (category === '1363924') { //Lifestyle
       jQuery('#faqcont_1363924').toggle('blind', options, 500);
   } else if (category === '1363957') { //Kids/Parenting
       jQuery('#faqcont_1363957').toggle('blind', options, 500);
   } else if (category === '1363958') { //News/Business
       jQuery('#faqcont_1363958').toggle('blind', options, 500); 
   } else if (category === '1364535') { //New Zealand
       jQuery('#faqcont_1364535').toggle('blind', options, 500);  
   } else if (category === '1568128') { //USA
       jQuery('#faqcont_1568128').toggle('blind', options, 500);
   } else {
       // do nothing.
   }
   return false;
}

