$(document).ready(function() {

	//	If the facebook_upcoming_button exists don't display the facebook
	//	hide/show buttons because the profile hasn't been loaded yet.
	if($("#facebook_upcoming_button").length){
		//$('.hide_friends').hide();
		//$('.show_friends').hide();
	}else{
		//	Presume it is closed
		//$('.show_friends').show();	
	}	

  $('.hide_friends').click(function(){
	$('.hide_friends').toggle();
	$('.show_friends').toggle();
	$(".fb_friends div").hide();
  });
  $('.show_friends').click(function(){
	openFacebookUpcomming();
  });  
});
/**
 *
 */
function openFacebookUpcomming(){
	//$('.user_info').css('height',profileHeight);
	$('.show_friends').hide();
	$('.hide_friends').show();
	$(".fb_friends div").show();
}


