$(document).ready(function() {
	
	$("body.entry .top").hover( function() {
			$("body.entry .top .contact").slideDown('fast');
		},
		function() {
			$("body.entry .top .contact").slideUp('fast');
		}
	);

});