/****************
		Facebook FeedThing
****************/

$(document).ready(function() {
	$('#fbFeedSliderText').click(function(){
		if($(this).css('marginLeft')=='770px'){
			$(this).html('Gå till de första igen')
			$('#fbFeedDiv').scrollTo($('#fbFeedDiv').find('li:nth-child(5)'),500,{axis:'x'});
			$(this).animate({
			    'margin-left':'0px'
			    }, 250, function() {
			  });
			}
		else{
			$(this).html('Visa ett gäng till')
			$('#fbFeedDiv').scrollTo($('#fbFeedDiv').find('li:nth-child(1)'),500,{axis:'x'});
			$(this).animate({
			    'margin-left':'770px'
			    }, 250, function() {
			  });
			}
		})
	})
