$(function() {

var visible = false;

$('#button-contact').click(function() {
	if (visible) {
		$('#contact').slideUp();
		visible = false;
	} else {
		$('#contact').slideDown(function() {
			$('#contact').css('height', $('#contact').height() + 'px');
		});
		visible = true;
	}
	return false;
});

$('#button-contact-hide').click(function() {
	$('#contact').slideUp();
	visible = false;
	return false;
});

$('#button-send').click(function() {
	var form = $('#form-contact-inline').get(0);
	form.submit();
});

});

