// Template Home https://tradingroom.infusionsoft.com/AddForms/processFormSecure.jsp

var animarProductos = 0;

$(document).ready(function(){
	
	$('#aboutbox').mouseover(function() {

		$('#submenu').show();
		
	});
	
	$('#aboutbox').mouseout(function() {

		$('#submenu').hide();
		
	});
	
	$('#email').focus(function() {

		if ($('#email').val() == "Your e-mail") {
			$('#email').val("");
		}
		
	});
	$('#email').blur(function() {

		if ($('#email').val() == "") {
			$('#email').val("Your e-mail");
		}
		
	});
	$('#name').focus(function() {

		if ($('#name').val() == "Your name") {
			$('#name').val("");
		}
		
	});
	$('#name').blur(function() {

		if ($('#name').val() == "") {
			$('#name').val("Your name");
		}
		
	});	


}); // end ready

var processform = function() {
	
	var data = 1
	
	if ($('#name').val() == "Your name") {
		data = 0;
	}
	if ($('#email').val() == "Your e-mail") {
		data = 0;
	}
	if (data == 0) {
		alert("You must complete your details.");
	} else {

		saveData = { // params
			infusion_xid: 'e0eba298239cc26a037910e44f3d367e',
			infusion_type: 'CustomFormWeb',
			infusion_name: 'Download eBook',
			Submit: 'Submit',
			Contact0FirstName : $('#name').val(),
			Contact0Email : $('#email').val()
		}
		
		$.ajax({ 
			url: "https://fortuneinstitute.infusionsoft.com/AddForms/processFormSecure.jsp",		   
			type: "POST",
			dataType: "HTML",
			data: saveData,
			success: function(data){
				location.href = "http://www.thefortuneroad.com/ebook-thanks.html";
			}
		 });
		 
	}

}
	 

var applytitle = function(title) {

	$('#productstitle').empty();
	$('#productstitle').html(title);		

}

var removetitle = function() {

	$('#productstitle').empty();
	$('#productstitle').html('&nbsp;');		

}

