$(document).ready(function() {
$('#familyBanner').hover(
	function () {
		$('.menuContainer').show();
		$('.menuContainer').stop(true,true).animate({
		'top':'32px'
		}, 500);
	},
	function () {
		$('.menuContainer').stop(true,true).animate({
		'top':'-500px'
		}, 500, function() {$('.menuContainer').hide();});
	}
	);
}); 




