/*
 * Referentieswitcher
 * QForma 2010
 */

$(document).ready(function(){

// When a list item is hovered
	$(".boxHome").mouseenter(function(){
		$(this).children('#project-hover').animate({
		    top: '0px'
		}, 200);
	})
	.mouseleave(function(){
		$(this).children('#project-hover').animate({
			top: '-100px'
		},200);
	});
});
