$(document).ready(function(){

	var status = 0;

	$('.footer_info_friends_seeall').click(function(){
		if(status == 0) {
			$('.footer_info_friends').addClass('footer_info_friends_sel');
			$('.footer_info_friends').removeClass('footer_info_friends');

			status = 1;
		}
		else {
			$('.footer_info_friends_sel').addClass('footer_info_friends');
			$('.footer_info_friends_sel').removeClass('footer_info_friends_sel');

			status = 0;
		}

		return false;
	});
});