$(document).ready(function(){
	spec110();
	function spec110(){
		var hue = 'rgb(' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ')';
		$('.110').animate( { color: hue }, 2500, spec110);
	}
	$('.caption').fadeTo(0, 0);
	$(".caption").hover(function() {
		$(this).stop().animate({"opacity": "0.9"}, 250);
	},function() {
		$(this).stop().animate({"opacity": "0"}, 250);
	});

	var top = $('.follow').offset().top - parseFloat($('.follow').css('marginTop'));
	$(window).scroll(function (event) {
		var y = $(this).scrollTop();
		if (y >= top) {
			$('.follow').addClass('fixed');
		} else {
			$('.follow').removeClass('fixed');
		}
	});
	

 });
 
