
$(function() {
	$('#email').focus(function() {
  		//alert(this.value);
  		if (this.value=='email'){
			this.value=''
  			$(this).css("color","black");
  		}else{
  			
  		}
	});
	$('#email').blur(function() {
		if (this.value==''){
			this.value='email'
			$(this).css("color","#C3C4C6");
  		}else{
  			
  		}
	});
	$(".submit").click(function() {
		var email = $("#email").val();
		var dataString = 'name='+ name + '&email=' + email;
		if(email==''){
			$('.error').fadeIn(500).show();
		}else{
			$.ajax({
				type: "POST",
				url: "join.php",
				data: dataString,
				success: function(){
					$('#signUpForm').fadeOut(500);
					$('#thanks').delay(500).fadeIn(500);
				}
			});
		}
		return false;
	});
});

$(document).ready(function(){
	$("a[rel^='prettyPhoto']").prettyPhoto({animationSpeed:'slow',theme:'light_square',slideshow:2000, autoplay_slideshow: false, show_title: false});
	
});
