$(document).ready(function(){
	
	// Homepage call to action hovers
	$('.ad-link').hover(function() {
		$(this).parent().find('.ad-background').stop().animate({ bottom: '0px' });
		$(this).parent().find('.hover-title').stop().animate({ "padding-bottom": "3px" });
	}, function() {
		$(this).parent().find('.ad-background').stop().animate({ bottom: '-30px' });
		$(this).parent().find('.hover-title').stop().animate({ "padding-bottom": "12px" });
	});

});
