$(function() {
	$('#contact_link').click(function() {
		$('#cf').showDom({width: null, height: null, callback: function() {
			$.modal.resize({contentWidth: true, contentHeight: true});
			$('form', $.modal.$content)
				.modal()
				.submit(function() {
					$.modal.load('/success.html', null, {callback: function() {
						$.modal.resize({contentWidth: true, contentHeight: true, duration: 'slow'})
					} });
				});
		}});
		return false;
	});

	$('#cf')
		.hide()
		.each(function() {
			$('input[type="text"], textarea', this)
				.each(function() {
					var $this = $(this);

					if ( !$this.val() || $this.val() == $this.attr('title') ) {
						$this
							.val($this.attr('title'))
							.addClass('empty');
					}
					$this.focus(function() {
						var $this = $(this);
						if ( $this.val() == $this.attr('title') ) $this.val('');
						$this.removeClass('empty');
					})
					.blur(function() {
						var $this = $(this);
						if ( !$this.val() ) {
							$this.val($this.attr('title')).addClass('empty');
						}
					});
				});
		});
});