// JavaScript Document
	$(document).ready(function(){
		var currSlide = 0;
		var totalSlides = 10;
		$('#swear').click(function(){
			$('#loginForm').fadeIn();
			$('body').animate( { backgroundColor: '#ffcc00' }, 500);
			$('#loginSubmitLink').css('color','white');
			$('#loginSubmitLink').html('go');
			$('input[name="redeem-code"]').focus();

		});
		$('#loginSubmitLink').click(function(){
			//check username and password
			if($('input[name="redeem-code"]').val() == 'neal8xYhu4'){
				$('body').animate( { backgroundColor: 'green' }, 500);
				$('#swear').html('YES');
				//start download
				window.location = '/media/messages/Neal Morgan - To The Breathing World (2009) (PR).zip';
			} else {
				$('#swear').html('NOPE');
				$('body').animate( { backgroundColor: '#000' }, 500);
				$(this).css('color','red');
				$(this).html('nope.');
				$(this).fadeIn();
			}
		});
	});
