function init()
{
	$('.highlight_container').mouseenter(onMouseOverHighlight); // Bind
}

function onMouseOverHighlight()
{
	$(this).find('img').fadeOut(100).animate({top: '-20'}, 0).fadeIn(1).animate({top: '-3'}, 300);
}

$(document).ready(init);

