$(document).ready(function() {
	
	/* Replace text in fields */
	$("#loading").hide();

	$('.text').click(function() {
		if (this.value == this.defaultValue) {
		this.value = '';
		}
	});
	
	$('.text').blur(function() {
		if (this.value == '') {
		this.value = this.defaultValue;
		}
	});	
	
	$('a#referral-link').click(function (e) {
		e.preventDefault();
		$('#basic-modal-content').modal();
	});
	
});	
