$(function(){	

// Show/Hide Twitter
var status;
status = 0;
$('div.twitter_content_hidden').hide();
$('img#twitter_expand').click(function(){

	if (status==0)
	{
	$('div.twitter_content_hidden').show('slow');
	status=1;
	}
	else
	{
	$('div.twitter_content_hidden').hide('slow');
	status=0;
	}
});
//

// Show/Hide Facebook
var status2;
status2 = 0;
$('div.facebook_content_hidden').hide();
$('img#facebook_expand').click(function(){

	if (status2==0)
	{
	$('div.facebook_content_hidden').show('slow');
	status2=1;
	}
	else
	{
	$('div.facebook_content_hidden').hide('slow');
	status2=0;
	}
});
//

// Show/Hide Facebook
var status3;
status3 = 0;
$('div.blog_content_hidden').hide();
$('img#blog_expand').click(function(){

	if (status3==0)
	{
	$('div.blog_content_hidden').show('slow');
	status3=1;
	}
	else
	{
	$('div.blog_content_hidden').hide('slow');
	status3=0;
	}
});
//



});

