// Email Club input
$(document).ready(function() {
	input = $('#email-signup input[type=text]');
	input.focus(function() {
		if (!this.title) {
			this.title = this.value;
		}
		if (this.value == this.title) {
			this.value = '';
		}
	})
	input.blur(function() {
		if (!this.value) {
			this.value = this.title;
		}
	})
});

// fix the sidebox if scrolling
if ($('#sidebox')) {
	$(document).scroll(function() {
		// if the height is to short, don't do it
		if($(window).height() > 500 /*$('#sidebox').height()*/) {
			if ($(this).scrollTop() >= 280 && !$('#sidebox').hasClass('fixed')) {
				$('#sidebox').addClass('fixed');
			} else if ($(this).scrollTop() < 280 && $('#sidebox').hasClass('fixed')) {
				$('#sidebox').removeClass('fixed');
			}
		}
	});
}

