$(function() {
	$(document).ready(function() {
			$('.content').each(function(index) {
				$(this).delay(500*index).animate({opacity:1});
			});
			
			$('.image').hover(function() {
				$(this).children().animate({bottom: 0, queue: false, duration: 200}, 200);
			}, function() {
				$(this).children().animate({bottom: -35, queue: false, duration: 200}, 200);
			});
			
			$('.image-gallery a').lightBox();

	});
});
