$(document).ready(function(){
	$("#home-splash").hover(
		function(){ $("#splash-content").stop().animate( { height: '120px', margin: '-122px 0px 0px 1px', 'border-top-width': '1px' }, 200 ); },
		function(){ $("#splash-content").stop().animate( { height: '0px', margin: '0px 0px 0px 1px', 'border-top-width': '0px' }, 200 ); }
	);
});

