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 === '1506000') { //Lifestyle
       jQuery('#faqcont_1506000').toggle('blind', options, 500);
   } else if (category === '1506022') { //Kids/Parenting
       jQuery('#faqcont_1506022').toggle('blind', options, 500);
   } else if (category === '1506029') { //News/Business
       jQuery('#faqcont_1506029').toggle('blind', options, 500); 
   } else {
       // do nothing.
   }
   return false;
}

