$(document).ready(function() {
	
	$(".toggle").toggle(function(){
		$(this).addClass("up");
		}, function () {
		$(this).removeClass("up");
	});
	
	$(".toggle").click(function () {
      $("#social-holder").slideToggle("slow");
    });

	$('.fadein img:gt(0)').hide();
	setInterval(function(){
		$('.fadein :first-child').fadeOut().next('img').fadeIn().end().appendTo('.fadein');
	}, 5000);
	
});
