// JavaScript Document
	  $(document).ready(function() {
			$('div.demo-show:eq(0)> div').hide();
			
			$('div.demo-show:eq(0)> h2').click(function() {
				$(this).next().slideToggle('fast');
				$(this).next().addClass("selected_topic");
				
				//Added for top stories in Newsroom
				$(this).children("img.more_info_special").toggleClass("less_info_special");
				//
				
				$(this).children("img.more_info").toggleClass("less_info");
				
			});
 			
			$('a.hide_more').click(function() {
			$(this).parent().hide('fast');
			$(this).parent().prev().children("img").removeClass("less_info");
			});
      });