$(document).ready(function(){
	
	$('#moreaboutme').click(function(){
		$.scrollTo( $('#presentation'), {speed:1500} );
	});
	
	$('.job').hover(function(){
		$(this).addClass("hover");
		$(this).find('img').animate({bottom:'50px'},{queue:false,duration:100});
		$(this).find('.details').fadeIn(400);
	}, function(){
		$(this).removeClass("hover");
		$(this).find('img').animate({bottom:'0px'},{queue:false,duration:100});
		$(this).find('.details').fadeOut(200);
	});
	
	$(".job").equalHeights();
	
});
