/*
 * jQuery Custom Animation
 * Copyright 2010 Take 42 LLC
 */
$(document).ready(function(){
	$("#hpSliders .item").each(function(){
		$(this).hover(
			// In:
			function() {
				$(this).children("DIV.overlay").animate(
					{
						top: '0'
					},
					300
				);
				$(this).children("DIV.overlay").children("DIV.bg").animate(
					{
						backgroundColor: "#c52d27",
						opacity: "0.70" // Make it a bit more opaque
					},
					300
				);
			},
			// Out
			function() {
				$(this).children("DIV.overlay").animate(
					{
						top: '90px'
					},
					300
				);
				$(this).children("DIV.overlay").children("DIV.bg").animate(
					{
						backgroundColor: "#000",
						opacity: "0.80"
					},
					300
				);
			}
		);
	});
});

