$(document).ready(function() {

	setInterval(rotateWlppr, 5000);

	$('#wrapper').css('opacity',0).animate({opacity:1}, 1000);
	
	$('form').submit(function(){
	
		var email = $('#email').val();
		
		if(email != ""){
			$.post(
	    		"subscribe.php",
	    	   	{ email: email},
	    	   	function() { 
	    	   		$('form').before('<p id="confirm">Thanks, your email address has been saved!<br>You will receive a message <em>very</em> soon.</p>').remove();
	    	   		$('#notify').append(' <span>&#10003;</span>')
	    	});
	    }
		return false;
	});
	
});


function rotateWlppr() {
	$('.current').fadeOut(2000, function(){
		$(this).removeClass('current');
	});
	
	if(!$('.current').next().length) {
		$('figure img').first().fadeIn(2000, function(){
    		$(this).addClass('current');
    	});
	} else {
    	$('.current').next().fadeIn(2000, function(){
    		$(this).addClass('current');
	    });
    }
}

