window.addEvent('domready', function(){

	/* Comments */
	var comments = new Comments('comment-form', 'comments');
	
	

	/* Join the mailing list */
	$('join_list').get('send').addEvent('success', function(rsp){
		rsp = JSON.decode(rsp);
		
		$('join_list').getElement('button').set({'disabled': false, 'text': 'Sign Up'});
		$('join_list').getElement('.alert').set('text', rsp.msg);
		if(rsp.status == 'ok')
		{
			$('join_list').reset();
			$('join_list').getElement('.alert').set('text', 'Thanks for signing up!');
		}
		else
		{
		
		}
	});
	
	$('join_list').addEvent('submit', function(e){
		e.stop();
		this.send();
		this.getElement('button').set({'disabled': true, 'text': 'Sending...'});
	});
	
	
	/* These times button */
	$('these-times').setStyle('cursor', 'pointer').addEvents({
		'mouseenter': function(){
			this.addClass('hover');
		},
		'mouseleave': function(){
			this.removeClass('hover');
		},
		'click': function(e){
			e.stop();
			window.location = this.getElement('a').get('href');
		}
	});

});