/*
 * jQuery Custom Animation
 * Copyright 2010 Take 42 LLC
 */
$(document).ready(function(){
	$(".sliderNav A.item").each(function(){
		$(this).hover(
			// In:
			function() {
				$(this).children("DIV.overlay").animate(
					{
						top: '0'
					},
					75
				);
			},
			// Out
			function() {
				$(this).children("DIV.overlay").animate(
					{
						top: '-5px'
					},
					150
				);
			}
		);
	});
});

