function contactOpen() {
	 $('#contactclose').show();
     $('#message').animate({ 
		height: "200px",
		width: "364px"
      }, 1000 );
	  $('.widthscale').animate({ 
		width: "364px"
      }, 1000 );
	  $('#content').animate({ 
		width: "346px"
      }, 1000 );
}
function contactRe() {
	$('#contactclose').hide();
     $('#message').animate({ 
		height: "50px",
		width: "200px"
      }, 500 );
	  $('.widthscale').animate({ 
		width: "200px"
      }, 500 );
	  $('#content').animate({ 
		width: "510px"
      }, 500 );
}
jQuery(function($) {
    $('#menu a').ahover({toggleEffect: 'width'});
	$('#message, .widthscale').focus(function(){ contactOpen(); });
	$('#contactclose').click(function(){ contactRe(); });
});
