// JavaScript Document
$(document).ready(function() {

//friends show hide
$('div#friendsShow').hide();

$('#slideDown').click(function(){
	$('div#friendsShow').slideDown();
	
	$('#slideDown').addClass('hideme');
	$('#slideUp').removeClass('hideme');
	return false;
	});
$('#slideUp').click(function(){
	$('div#friendsShow').slideUp();
	
	$('#slideUp').addClass('hideme');
	$('#slideDown').removeClass('hideme');
	return false;
	});




});
