$(document).ready(function(){
	//initial state
	$('#social_feed').hide();

	function showSocialFeed() {
		$('#social_feed').show();
		return false;
	}

	function hideSocialFeed () {
		$('#social_feed').hide();
	}

	$('#fb-roll a.popup').bind('click mouseover', showSocialFeed);
	//$('#fb-roll a.popup').bind('mouseout', hideSocialFeed);
	$('#social_feed .close').bind('click', hideSocialFeed);

	/*
	$('#fb-roll a.popup').click(function(){
		$('#social_feed').show();
		return false;
	});

	$('#social_feed .close').click(function(){
		$('#social_feed').hide();
	});
	*/
//ending jquery
});
