// JavaScript Document

$(document).ready(function(){	
	$(".imagetile").mouseenter(function(){
		$(this).find("div").clearQueue().animate({top: -1},200);
	});
	$(".imagetile").mouseleave(function(){
		$(this).find("div").clearQueue().animate({top: 210},200);
	});	
});

