$(document).ready(function() {
	$('a.signup-link').facebox({'opacity': '0.3'});
	$('a#login_button').facebox({'opacity': '0.3'});
	
	$('#take-the-tour').click(function() {
		$(this).hide();
		$('#tour').show();
		startTour();
		return false;
	});
});

function startTour() {
	$('#tour').cycle({
		sync: 0,
		timeout: 8000,
		speed: 2000,
		delay: -8000,
		nowrap: 1
	});
}