$(document).ready(function(){
	$("#subscription_form").submit(function(){
	  var email = $("#email").val();
	  var name	= $("#uname").val();
	  if(email=="" || name==""){
		  //$("#sign_up_result").html("Username or email can not be blank");
			 jAlert("Username or email can not be blank");		  
		}
		else if(email==""){
		//$("#sign_up_result").html("Email address can not be blank");
			//$("#sign_up_result").css("display","inline");]
			jAlert("Email address can not be blank");		 
		}		
		else{
			//alert("in custom jquery");
			
			$.ajax({
			 type:  "post",
			 url: 	"http://www.supremecoffeemachines.com.au/ajax/subscriber.ajx.php",
			 data:  $("#subscription_form").serialize(),
			 success: function(msg){
			 //alert(msg);
			 //console.log("The status of "+msg.indexOf("failure"));
			 if(msg.indexOf("failure")=='-1'){
			 //$.prompt('You have successfully subscribed!!!');
			  jAlert("You have successfully subscribed!!!");
			//	window.parent.document.getElementById("sign_up_result").innerHTML = msg;
				//window.parent.Shadowbox.close('login');					
				$("#uname").html(" ");
				$("#email").html(" ");
			}
			else
				{				 
					var error	= msg.split("#");
					//$.prompt(error[1]);
					jAlert(error[1]);
					//$("#sign_up_result").html(error[1]);
					$("#sign_up_result").css("display","none");						
				}
			 }
			});//end ajax
			//alert(url);
		} //end else

	  });
	
	//window.parent.Shadowbox.close();

});
