$(document).ready(function(){
	
	//$("#fan-reporter-profiles").hide();
	
	
   // hide accordions if there's more then one post visible
   var lis = $("#news-fans .stories, #home-agg-fans .stories").children("li");
   if (lis.length > 1) {
       lis.find(".accordion").hide();
   }
   else {
       lis.find(".morelink, .commentslink").hide();
       lis.find(".teaser").hide();
   }
   
   // expand posts
   $("#news-fans .morelink, #home-agg-fans .morelink, #news-fans .commentslink, #home-agg-fans .commentslink").click(function(e){
       $("#news-fans .stories .accordion, #home-agg-fans .stories .accordion").hide();
       $(".morelink, .commentslink").show();
       
       var post = $(this).closest("li");
       post.find(".morelink, .commentslink").hide();
       post.find(".accordion").show();
       post.find(".teaser").hide();
       
       e.preventDefault();
   });
   
   
   // show fan reporters
   $(".viewprofiles").toggle(
   function(){
	   $("#fan-reporter-profiles").show();
       $(this).css("background","url(/resources/site_images/hide-profiles.gif) no-repeat top left");
   },
   function(){
	   $("#fan-reporter-profiles").hide();
       $(this).css("background","url(/resources/site_images/view-profiles.gif) no-repeat top left");
	});
   
});