 $(document).ready(function(){
	$(".newsbody2").hide();
	$("div.newstitle>a").click(function(){
		$('.floatingbox').removeClass('floatingbox').find('.newsbody2:visible').slideUp('slow',function (){
   		// IE 8 fix. This forces a reflow after everything is done, otherwise we lose important margins.
   		// Recheck later to see if future jquery versions can overcome this 
   		if (jQuery.browser.msie && jQuery.browser.version.substring(0,1) == '8'){
   			$('.hubbox').css('display', 'none').css('display', 'block');
   		}
   }); // close other opened stories
		$(this).parent('div').next('.newsbody2:hidden').show('slow').parent('div').addClass('floatingbox'); // open story
	   return false;
   });
 });