$(document).ready(function() {
	$('.highlight-box').each(function () {
		$(this).mouseover(function(){
			$(this).css({ "top":"-3px" });
		}).mouseout(function(){
			$(this).css({ "top":"0px" });
		});
	});
});
