<!DOCTYPE html>
<html lang="en" ng-app>
<head>
	<meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">

	<title>Watch Him Trade ~ Recorded Live Trading</title>
	
	<!-- Bootstrap -->
    <link href="/theme/css/bootstrap.min.css" rel="stylesheet" />
	<link href="/theme/css/normalize.css" rel="stylesheet" />
	<link href="/theme/css/style.css" rel="stylesheet" />
	<link href="/theme/css/lightbox.css" rel="stylesheet" />
	<link href="/theme/css/jquery.gridster.css" rel="stylesheet" />
	<!-- Warming Up -->
	<link href='https://fonts.googleapis.com/css?family=Buenard:700' rel='stylesheet' type='text/css'>

	<!-- Stripe -->
    <script src='https://js.stripe.com/v2/' type='text/javascript'></script>
    
  	<!-- Stripe API information -->
	<script type="text/javascript">
		var STRIPE_PUBLISHABLE_KEY = 'pk_live_3LfVStlEXUUsBtKekljXE1JL';
		Stripe.setPublishableKey(STRIPE_PUBLISHABLE_KEY);
	</script>
	
	<!-- Google Analytics -->
	<script src='/theme/js/googleTracking.js' type='text/javascript'></script>
	<script src='https://code.jquery.com/jquery-2.1.4.min.js' type='text/javascript'></script>
	<script src='https://code.jquery.com/ui/1.11.4/jquery-ui.min.js' type='text/javascript'></script>

</head>
<body id="home">

<div id="landing-pitch">

	
<div id="header">

	<div class="container-fluid">
	  <div class="navbar-header">
	    <button style="margin-top: 30px; font-size: 25px;" type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
	      <span class="glyphicon glyphicon-align-justify" style="color: white;"></span>
	    </button>

			
			<span id="brand" style="" class="visible-xs">
				<a href="/">
					W<span style="font-family: 'Roboto', sans-serif; font-weight: 300; color: #5aff00;">H</span>T
					<!-- #Christmas Updates -->
					<!-- <img src="/theme/images/christmas/santa-icon.png" height="40px" /> -->
				</a>
				<span id="sub-header">ONE TRADE AT A TIME, ONE DAY AT A TIME</span>
			</span>

			<span id="brand" style="" class="hidden-xs">
				<a href="/">
					WATCH<span style="font-family: 'Roboto', sans-serif; font-weight: 300; color: #5aff00;">HIM</span>TRADE
					<!-- #Christmas Updates -->
					<!-- <img src="/theme/images/christmas/santa-icon.png" height="40px" /> -->
				</a>
				<span id="sub-header">ONE TRADE AT A TIME, ONE DAY AT A TIME</span>
			</span>

			
	  </div>
	  <div id="navbar" class="navbar-collapse collapse" aria-expanded="false" style="height: 1px;">
	    <ul id="links" class="nav navbar-nav navbar-right">
			
				<!-- <li>
					<a href="/chatPricing" class="goToSignUpForm">Chat Room</a>
				</li> -->
				<li>
					<a href="/chatPricing">Chat Room</a>
				</li>
				<li>
					<a href="/livetrading">Live Trading</a>
				</li>
				<!-- <li>
					<a href="/portfolio-tracking" id="testimonials">Track Record</a>
				</li> -->
				<li>
					<a href="/about">About Us</a>
				</li>
			
				<li>
					<a href="/howitworks">How It Works</a>
				</li>
			
			<li>
				<a href="/faq">FAQ</a>
			</li>
			<li>
				<a href="#" id="login-trigger" data-toggle="modal" data-target="#loginModal">Login</a>
			</li>
			    </ul>
	  </div><!--/.nav-collapse -->
	</div>

</div>

<!-- Login Modal -->
<div class="modal fade" id="loginModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  <div class="modal-dialog" style="width: 350px;">
    <div class="modal-content">
      <div class="modal-header">
        <h4 class="modal-title" id="myModalLabel">
        	Login
        </h4>
      </div>
      <form action="/login" method="post" role="form">
      <div class="modal-body" id="login-content-modal">
		<!-- Login form -->
		
		  <div class="form-group" style="padding-top: 10px;">
		    <label style="color: black;" for="Email">Email address</label>
		    <input name="loginEmail" type="email" class="form-control" id="Email" placeholder="Enter email">
		  </div>
		  <div class="form-group">
		    <label style="color: black;" for="password">Password</label>
		    <input name="loginPassword"  type="password" class="form-control" id="password" placeholder="Password">
		  </div>
		
      </div>
      <div class="modal-footer">
      	<span>
      		<a style="padding-top: 10px;" class="pull-left" href="" data-toggle="modal" data-target="#forgotPassword">Forgot Password?</a>
      	</span>
      	<input type="submit" class="btn btn-success" name="Login" value="Log In" />
        <!-- <button type="button" class="btn btn-danger" style="width: 150px; height: 40px;" data-dismiss="modal">Close</button> -->
      </div>
      </form>
    </div>
  </div>
</div>

<!-- Forgot Password Modal -->
<div class="modal fade" id="forgotPassword" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        
        <h4 class="modal-title" id="myModalLabel">
        	Forget your password?
        </h4>
      </div>
      <div class="modal-body">
		<p style="line-height: 24px;">We'll send you a temporary password to login with, after which you can change it to whatever you'd like.</p>
      <!-- Forgot Password Form -->
        <form role="form" id="ForgotPasswordForm" action="/" method="post">
		  <div class="form-group">
		    <label for="questions">Enter your Email</label>
		    <input type="text" class="form-control" name="forgotPasswordEmail" id="forgotPasswordEmail" />
		  </div>
		  <input type="submit" class="btn btn-success" id="sendForgotPasswordEmail" name="sendForgotPasswordEmail" value="Send Email">
		</form>

      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-danger" style="width: 150px; height: 40px;" data-dismiss="modal">Close</button>
      </div>
    </div>
  </div>
</div>




	<div id="pitch-inner" style="">
		<p>
			<h2>Watch our best traders trade in real time.</h2>
			<h3 style="margin: 0 auto; margin-top: -15px; margin-bottom: 30px; line-height: 28px; font-weight: 200; color: #a0a0a0;">Watch/listen to them explain trades, ask questions, and chat with others. 
				<br />We are the most transparent way to improve your trading
			</h3>
			<!-- <a href="/startyourtrial"> -->
				<button class="goToSignUpForm" style="font-size: 18px;" name="Sign Up"><span>Start your 15-day Trial Now!</span></button>
			<!-- </a> -->
                        <div style="margin: 10px 0;">
			        <a href="#" id="LearnMore">learn more</a>
                        </div>
		</p>
	</div>

	<div class="row" id="signUpForm" style="display: none; background-color: rgba(0, 6, 0, 0.8);
	background: rgba(0, 6, 0, 0.8);
	color: rgba(0, 6, 0, 0.8);">
 
		<div class="row" style="max-width: 560px; margin: 20px auto;">
			<form role="form">
				<h3 style="text-align: center; color: white;">We just need a few details..</h3>
				<hr class="colorgraph">
				<div id="error" style="color: red; padding: 5px;"></div>
				<div class="form-group">
					<input type="email" name="email" id="email" class="form-control input-lg required" placeholder="Email Address" tabindex="4">
				</div>
				<div class="row">
					<div class="col-xs-12 col-sm-6 col-md-6">
						<div class="form-group">
							<input type="password" name="password" id="pw" class="form-control input-lg required" placeholder="Password" tabindex="5">
						</div>
					</div>
					<div class="col-xs-12 col-sm-6 col-md-6">
						<div class="form-group">
							<input type="password" name="password_confirmation" id="password_confirmation" class="form-control input-lg required" placeholder="Confirm Password" tabindex="6">
						</div>
					</div>
				</div>
				<input type="hidden" name="affiliate" id="affiliate" value="0" />				<div class="row">
					<div class="col-xs-12 col-md-12"><input type="submit" value="Continue" class="btn btn-success btn-block btn-lg" id="signUpFormContinue" style="background-color: #75CB00" tabindex="7"></div>
				</div>
			</form>
		</div>
 
 		<div class="row" style="color: white; line-height: 40px; margin-top: 50px; margin-bottom: 30px; font-size: 16px;">
 			<div class="col-md-2"></div>
 			<div class="col-md-4">
				<ul style="text-align: left; list-style-type: none;">
					<li> <span class="glyphicon glyphicon-ok"></span> Watch our best trader’s screen every day, 5 days a week </li>
					<li> <span class="glyphicon glyphicon-ok"></span> See and hear every single trade our top trader is making </li>
					<li> <span class="glyphicon glyphicon-ok"></span> High win rate in both options and stocks </li>
					<li> <span class="glyphicon glyphicon-ok"></span> Focus on TSLA, AMZN, GOOGL, NFLX, AAPL, SPY </li>
				</ul>
			</div>
			<div class="col-md-4">
				<ul style="text-align: left; list-style-type: none;">
					<li> <span class="glyphicon glyphicon-ok"></span> Work 1-on-1 with our top trader after hours </li>
					<li> <span class="glyphicon glyphicon-ok"></span> Become a pro at interpreting level 2 and time and sales</li>
					<li> <span class="glyphicon glyphicon-ok"></span> No complicated approach, easy to follow</li>
					<li> <span class="glyphicon glyphicon-ok"></span> Access to all educational videos and webinars </li>
				</ul>
			</div>
		</div>
		<div class="row">
			<div style="margin: 0 auto; text-align: center;">
				<h2 style="color: white;">$5 for 15-day Trial</h2>
			</div>
		</div>
 
 
	</div>
 
	<style type="text/css">
		label { color: black; }
	</style>
 

    <div id="paymentForm" class='form-row' style="background: #fff; display: none; max-width: 1100px; margin: 0px auto;">
              <div class="well col-xs-12" style="background: #fff"> 
 
		<h2 style="text-align: center; margin-bottom: 20px;">Complete Signup</h2>
 
		<div class='col-md-4'>
 
			<div style="margin-bottom: 0px;">
				<div class="well" style="line-height: 20px; margin-top: 0px; background-color: #fff; border: 1px solid #fff;">
					<img style="width: 54px;" src="/theme/images/paymentMethods/lock.png" />
					&nbsp; &nbsp; <strong>Secure Payment</strong>
				</div>
			</div>
 
			<div style="margin-bottom: 0px;">
				<div class="well" style="line-height: 20px; margin-top: 0px; background-color: #fff; border: 1px solid #fff;">
					<img style="width: 54px;" src="/theme/images/paymentMethods/visa.png" />
					<img style="width: 54px;" src="/theme/images/paymentMethods/mastercard.png" />
					<img style="width: 54px;" src="/theme/images/paymentMethods/discover.png" />
					<img style="width: 54px;" src="/theme/images/paymentMethods/amex.png" />
				</div>
			</div>
 
			<div class="well" style="font-size: 16px; line-height: 20px; margin-top: 10px; background-color: #fff; border: 1px solid #fff;">
				<p>
					Want to talk to our trader before signing up?
				</p>
				Fill out <a href="" data-toggle="modal" data-target="#PhoneConsultation">this form</a> and he will get in touch with you! 
			</div>
		</div>
 
		<div class='col-md-4' style="background:white;">
 
			<div class="row">
				<div class="row" style="margin: 10px auto;">
					<form 
		          		accept-charset="UTF-8" 
		          		action="/payment" 
		          		class="require-validation" 
		          		data-cc-on-file="false" 
		          		data-stripe-publishable-key="pk_bQQaTxnaZlzv4FnnuZ28LFHccVSaj" 
		          		id="payment-form" 
		          		method="post"
		          		style=""
		          	>
 
				         
			            <div class='form-row'>
			              <div class='col-md-12 error form-group hide'>
			                <div class='alert-danger alert'>
			                  Please correct the errors and try again.
			                </div>
			              </div>
			            </div>
 
				        <div style="margin:0;padding:0;display:inline">
				          <input name="utf8" type="hidden" value="✓" />
				          <input name="_method" type="hidden" value="PUT" />
				          <input name="authenticity_token" type="hidden" value="qLZ9cScer7ZxqulsUWazw4x3cSEzv899SP/7ThPCOV8=" />
				        </div>
 
			            <div class='form-row'>
			              <div class='col-xs-12 form-group required'>
			                <label class='control-label'>Name on Card</label>
			                <input class='form-control name-on-card' size='4' type='text'>
			              </div>
			            </div>
 
			            <div class='form-row'>
			              <div class='col-xs-12 form-group card required'>
			                <label class='control-label'>Card Number</label>
			                <div class='input-group'>
			                <input autocomplete='off' class='form-control card-number' size='20' type='text'>
			                <div class="input-group-addon"><span class='glyphicon glyphicon-lock'></span></div>
			                </div>
			              </div>
			            </div>
 
			            <div class='form-row'>
			              <div class='col-xs-4 form-group cvc required'>
			                <label class='control-label'>CVC</label>
			                <input autocomplete='off' class='form-control card-cvc' placeholder='ex. 311' size='4' type='text'>
			              </div>
			              <div class='col-xs-4 form-group expiration required'>
			                <label class='control-label'>Expiration</label>
			                <input class='form-control card-expiry-month' placeholder='MM' size='2' type='text'>
			              </div>
			              <div class='col-xs-4 form-group expiration required'>
			                <label class='control-label'> </label>
			                <input class='form-control card-expiry-year' placeholder='YYYY' size='4' type='text'>
			              </div>
			            </div>

                                    <div class="clearfix visible-xs-block"></div>
			            
			            <div class='form-row'>
			              <div class='col-xs-12'>
			                <div class='alert alert-warning' style="text-align: center; margin-top: 5px;">
			                  Amount Due after 15-day Trial:
			                  <span class='amount'>
			                  	$99.99			                  </span>
			                </div>
			              </div>
			            </div>
			            
                                    <div class="clearfix visible-xs-block"></div>

				    <div class='form-row'>
			              <div class='col-xs-12 form-group'>
			                <input type="checkbox" name="terms" id="terms" value="yes" /> 
			                <strong style="color: black; line-height: 20px;">Please acknowledge you have read our <a href="/termsandprivacy">terms and conditions</a>.</strong>
			              
			              </div>
			            </div>
				
                                    <div class="clearfix visible-xs-block"></div>
		
			            <div class='form-row'>
			              <div class='col-xs-12 form-group'>
			                <button id="paymentSubmitButton" style="width: 100%; margin-top: 2px;" class='form-control btn btn-primary submit-button' type='submit'>Start Your Trial »</button>
			              </div>
			            </div>
 
			          </form>
				</div>
			</div>
 
		</div>
		<div class='col-md-4'>
 
			<div style="margin-bottom: 0px;">
				<div class="well" style="line-height: 20px; margin-top: 0px; background-color: #8df902; border: 1px solid #75CB00;">
					<strong>15 Day Trial</strong><br />
					<strong><u>You will be charged $5 for a 15 day trial.</u></strong> You can cancel at any time to avoid further billing. After the trial, membership costs $99.99 per month! 
				</div>
			</div>
			<div style="margin-top: 0px;">
				<div class="well" style="line-height: 20px; margin-top: 28px; background-color: #8df902; border: 1px solid #75CB00;">
					<strong>What's included?</strong>
					<ul style="list-style-type: circle; padding-left: 17px;">
						<li>Live Trading every day beginning @ 9 AM EST</li>
						<li>Over 1000 hours of trading footage</li>
						<li>100% transparency, you will see EVERYTHING</li>
						<li>1-on-1 sessions to ensure you improve your skills</li>
					</ul>
				</div>
			</div>
 
		</div>
<!--
		<div class='col-md-6'>
			<div class="well" style="line-height: 20px; margin-top: 10px; background-color: #fff; border: 1px solid #fff;">
				<img style="width: 54px;" src="/theme/images/paymentMethods/visa.png" />
				<img style="width: 54px;" src="/theme/images/paymentMethods/mastercard.png" />
				<img style="width: 54px;" src="/theme/images/paymentMethods/discover.png" />
				<img style="width: 54px;" src="/theme/images/paymentMethods/amex.png" />
			</div>
		</div>
-->
	</div>


</div>
</div>


<!-- Include Main meat of the page -->
	<div id="features">
		<ul>
		<!--
			<li>
				<h2>Live Trading</h2>
				Real trades, executed in real time so that you can <em>really</em> make money!
			</li>
			<li>
				<h2>Consistency is Key</h2>
				Newbie or veteran, learn how to keep your losers small and let winners run!
			</li>
			<li>
				<h2>Money, Money, Money</h2>
				Become self-dependant! Learn to make money in the market consistently.
			</li>
		-->
			<li>
				<h2>100% Transparency</h2>
				You will see and hear everything our trader does. Our trader’s platform is broadcast over a live feed every day starting @ 9 AM EST
			</li>
			<li>
				<h2>Real Time</h2>
				This is the real deal; everything is real time. You can act on trades the second they are entered. There is no lag whatsoever
			</li>
			<li>
				<h2>Discipline</h2>
				Everything our trader does is done with discipline. By observing his discipline every day, you too will become a disciplined trader
			</li>
		</ul>
	</div>

<!--
	https://www.youtube.com/watch?v=fdJc1_IBKJA
-->
<!--
		<section class="content-section video-section">
		  <div class="pattern-overlay">
			  <a id="bgndVideo" 
			  	 class="player"
			     data-property="{videoURL:'https://www.youtube.com/watch?v=Zn-8SmYYnMI',containment:'.video-section', quality:'large', autoPlay:true, mute:true, opacity:1}"
			  	>
			  </a>
			  <div class="container">
		      <div class="row">
		        <div class="col-lg-12">
		        <h1>100%+ Win!</h1>  
		        <h3>As a subsciber you'll see & hear trades like this happen in real-time, giving you the chance to make serious money!</h3>
			   </div>
		      </div>
		    </div>
		  </div>
		</section>
-->
	<hr class="divider" />

	<div id="video" style="max-width: 1100px;">
		<!-- <h2>Get a taste with this winning trade!</h2> -->
		<span>Learn more about Live Trading by watching this video.</span>
		<div class="flex-video widescreen" style="text-align:center;">
			<iframe allowfullscreen="" src="//www.youtube.com/embed/M1cvcOxhDqY" frameborder="0"></iframe>
		</div>
		<p><a href="/videolibrary">See more in our video library</a></p>
		<!--
		<div id="quickForm">
			<span>Start your 7-day Trial now!</span>
			<form class="form-inline" role="form" action="/startyourtrial" method="post">

			<input type='hidden' name='plan' value='WHT-Trial-Monthly' />
			<input type='hidden' name='cost' value='5.00' />

			  <div class="form-group">
			    <label class="sr-only" for="exampleInputEmail2">Full Name</label>
			    <input type="text" name="name" class="form-control quickFormInputs" placeholder="Full Name">
			  </div>
			  <div class="form-group">
			    <label class="sr-only" for="exampleInputEmail2">Email Address</label>
			    <input type="email" name="email" class="form-control quickFormInputs" placeholder="Email Address">
			  </div>
			  <div class="form-group">
			    <label class="sr-only" for="exampleInputEmail2">Password</label>
			    <input type="password" name="password" class="form-control quickFormInputs" placeholder="Password">
			  </div>
				<input type="submit" name="Submit" class="submit greenSubmit" value="Sign up now!" />
			</form>
		</div>
		-->
	</div>

<script type="text/javascript">
 
	$(document).ready( function() {
		var type = window.location.hash.substr(1);
 
		if (type == 'signUpNow') {
			$('.goToSignUpForm').trigger('click');
		}
		
	    if (type != '') {
	    	var aTag = $("#"+type);
	    	$('html,body').animate({scrollTop: aTag.offset().top},'slow');
	    }
	});
 
	$('#testimonials').click(function() {
	    var aTag = $("#people-saying-container");
	    $('html,body').animate({scrollTop: aTag.offset().top},'slow');
 
	});
 
	/* Sign up now clicked! */
	$('.goToSignUpForm').click(function() {
		// Show signup form. Hide pitchText
		$("html, body").animate({ scrollTop: 0 }, "slow");
		$('#pitch-inner').hide();
		$('#paymentForm').hide();
		$('#contestsHeader').hide();
		$('#contestsSubHeader').hide();
		$('#contests_pitch-inner').hide();
		$('#contestSignUpHeader').fadeIn(400);
	  	$('#signUpForm').fadeIn(400);
	});
 
	/* Sign up form filled out, validate fields then continue to payment form */
	$('#signUpFormContinue').click(function() {
 
		var error = '';
 
		if ( $('#email').val().length == 0 ) {
			error = 'Please fill out your email!';
			$('#error').text(error);
			$('#email').focus();
			return false;
 
		}
 
		if ( $('#pw').val().length == 0 ) {
			error = 'Don\'t forget your password!';
			$('#error').text(error);
			$('#pw').focus();
			return false;
		}
 
		if ( $('#password_confirmation').val().length == 0 ) {
			error = 'Please confirm your password!';
			$('#error').text(error);
			$('#password_confirmation').focus();
			return false;
		}
 
		if ( $('#pw').val() != $('#password_confirmation').val() ) {
			error = 'Your passwords don\'t match. Please make sure your confirmed password is the same.';
			$('#error').text(error);
			$('#password_confirmation').focus().val('');
			return false;
		}
		
 
		/* All is well, lets add the record. */
 
		var email = $('#email').val();
		var password = $('#password_confirmation').val();
		var affiliate = $('#affiliate').val();
		var packageID = 1; // live trading package for this page.
 
		$.ajax({
            data: { email : email, password : password, affiliate : affiliate, PackageTypeID : packageID },
            type: 'GET',
        	cache: false,
            url: '/system/views/contests_v2/ajax/insertNewUser.php',
            success: function(response) {
 
            	var jsonResponse = jQuery.parseJSON(response);
 
            	if (jsonResponse.errorText) {
            		$('#error').text('Email taken! Please try a different one.');
            		$('#email').focus().val('');
            		return false;
        		}
        		else {
        			// Show payment form
        			$('#signUpForm').hide();
        			$('#contests_pitch-inner').hide();
        			$('#contestsHeader').hide();
        			$('#contestsSubHeader').hide();
        			$('#footer').hide();
	  				$('#paymentForm').fadeIn(400);
        		}
 
		    }
        });
 
 
 
	});
 
</script>



	<div id="footer">

	<hr class="divider" />

		
		<div id="footerImage">

	
	

	                        			<h1>Want to talk to a real person before signing up?</h1>
			<span class="footer-span">Schedule a <a href="" data-toggle="modal" data-target="#PhoneConsultation">free phone consultation</a>!</span>
                        
			<!-- Phone Consultation Modal -->
			<div class="modal fade" id="PhoneConsultation" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
			  <div class="modal-dialog">
			    <div class="modal-content">
			      <div class="modal-header">
			        <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
			        <h4 class="modal-title" id="myModalLabel">
			        	Schedule Free Phone Consultation
			        </h4>
			      </div>
			      <div class="modal-body">
			      <small>
			      	Kevin will call you during a convenient time you have selected and you can ask him any questions you'd like about his trading and the Watch Him Trade service!
			      </small>

			      <!-- Consultation Form -->
			        <form role="form" id="PhoneConsultationForm" action="#" method="post">
			          <div class="form-group">
					    <label for="firstname">First Name</label>
					    <input type="text" class="form-control" name="firstname" id="firstname" placeholder="First Name">
					  </div>
					  <div class="form-group">
					    <label for="number">Phone Number to Call</label>
					    <input type="text" class="form-control" name="number" id="number" placeholder="Phone Number">
					  </div>
					  <div class="form-group">
					    <label for="email">Email address</label>
					    <input type="email" class="form-control" name="email" id="email" placeholder="Enter email">
					  </div>
					  <div class="form-group">
					    <label for="timeToCall">Best Time to Call</label>
					    <input type="text" class="form-control" name="timeToCall" id="timeToCall" placeholder="1pm-4pm">
					  </div>
					  <input type="submit" class="btn btn-success" id="SendRequest" name="SendRequest" value="Send Request">
					  <div style="display: none;"><textarea name="EmailBotInfo"></textarea></div>
					</form>

			      </div>
			      <div class="modal-footer">
			        <button type="button" class="btn btn-danger" data-dismiss="modal">Close</button>
			      </div>
			    </div>
			  </div>
			</div>
			
			<a href="/faq"><button id="footer-faq">Still have questions? Read our FAQ.</button></a>
			<div id="footerLinks">
				<ul>
					<li><a href="/articles">Blog</a></li>
					<li><a href="/livetrading">Live Trading</a></li>
					<li><a href="/chatPricing">Chat Room</a></li>
					<li><a href="/videolibrary">Video Library</a></li>
					<li><a href="/faq">FAQ</a></li>
					<li><a href="/termsandprivacy">Terms / Privacy</a></li>
					<li><a href="#" data-toggle="modal" data-target="#contactModal">Contact Us</a></li>
					<li>&copy; 2018 WatchHimTrade.com</li>
				</ul>
			</div>
			
			<!-- Contact Us Modal -->
			<div class="modal fade" id="contactModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
			  <div class="modal-dialog">
			    <div class="modal-content">
			      <div class="modal-header">
			        <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
			        <h4 class="modal-title" id="myModalLabel">
			        	Contact Us
			        </h4>
			      </div>
			      <div class="modal-body">
				
			      <!-- Consultation Form -->
			        <form role="form" id="contactUsForm" action="#" method="post">
			          <div class="form-group">
					    <label for="firstname">First Name</label>
					    <input type="text" class="form-control" name="contactFirstname" id="contactFirstname" placeholder="First Name">
					  </div>
					  <div class="form-group">
					    <label for="email">Email address</label>
					    <input type="email" class="form-control" name="contactEmail" id="contactEmail" placeholder="Enter email">
					  </div>
					  <div class="form-group">
					    <label for="timeToCall">Question/Inquiry</label>
					    <textarea name="contactQuestion" class="form-control"></textarea>
					  </div>
					  <div class="form-group">
					    <label for="botProtection">What is 2+2?</label>
					    <input type="text" name="botProtection" class="form-control" />
					  </div>
					  <input type="submit" class="btn btn-success" id="SendContactRequest" name="SendContactRequest" value="Send Request">
					<div style="display: none;"><textarea name="EmailBotInfo"></textarea></div>
					</form>

			      </div>
			      <div class="modal-footer">
			        <button type="button" class="btn btn-danger" data-dismiss="modal">Close</button>
			      </div>
			    </div>
			  </div>
			</div>

                        <!-- Terms and Privacy Modal -->
                        <div class="modal fade" id="termsPrivacyModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
                          <div class="modal-dialog">
                            <div class="modal-content">
                              <div class="modal-header">
                                <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
                                <h4 class="modal-title" id="myModalLabel">
                                        Terms &amp; Privacy Policy
                                </h4>
                              </div>
                              <div class="modal-body">
                                          <div>
        <p><strong>WATCHHIMTRADE.COM: DISCLAIMER AND TERMS OF USE</strong></p><p>These Terms of Service (the “Agreement”) 
            are applicable to the web sites located at the domain watchhimtrade.com (the “Site”). The Agreement sets forth 
            the terms of your use of the Site (the “Service”) which are offered to you by watchhimtrade.com LLC (“WHT”). BY 
            USING THE SERVICE, YOU AGREE TO THE TERMS OF THIS AGREEMENT JUST AS IF YOU HAD SIGNED IT. IF YOU DO NOT AGREE TO 
            BE BOUND BY THE TERMS OF SERVICE, PLEASE DO NOT USE THE SERVICE. USE OF THE SERVICE SIGNIFIES YOUR CONSENT TO 
            THIS AGREEMENT AND THE PRIVACY POLICY. http://www.watchhimtrade.com/privacy-policy. THIS AGREEMENT PROVIDES THAT 
            THE PARTIES WILL RESOLVE ANY DISPUTE THROUGH PRIVATE ARBITRATION, AND THEREFORE YOU ARE WAIVING YOUR RIGHT TO HAVE 
            A JUDGE OR JURY RESOLVE ANY DISPUTE RELATING TO WHT, THE SITE OR THE SERVICE. WHT reserves the right to change this
             Agreement from time to time. When using the Service, you agree that you are subject to any additional posted 
             guidelines, rules, terms and conditions applicable to the Service, which are incorporated into this Agreement.
        </p>
        <p>FOR THOSE USERS UNDER THE AGE OF EIGHTEEN: If you are under eighteen years old, you must have your parent or guardian
            review and agree to this Agreement on your behalf by clicking the box marked “I accept the Terms of Service / Privacy
             Policy”. Users under thirteen may not use the Service.
        </p>
        <p>WE ARE NOT REGISTERED BROKER DEALERS OR REGISTERED INVESTMENT ADVISORS, AND ARE NOT QUALIFIED TO GIVE FINANCIAL ADVICE. 
            WHT allows its users to view online day-traders practice their craft. WHT and its owners, employees, affiliates and 
            agents responsible for the content of this site, and the traders featured on the Site, are not registered as Broker 
            Dealers, Investment Advisors or financial analysts in any jurisdiction whatsoever, nor are they members of any 
            association for research providers. We are not qualified to give financial advice to anyone. All opinions expressed 
            by any of the traders on the Site are solely their opinions and do not reflect the opinions of WHT or its owners, 
            employees, affiliates or agents. You should not treat any opinion expressed by our guest traders as a specific 
            inducement to make a particular investment or follow a particular strategy, but only as an expression of their 
            opinions. The traders opinions are based upon information they consider reliable, but neither WHT nor its affiliates 
            warrant their completeness or accuracy, and these opinions should not be relied upon as such. We are not obligated to 
            update or correct any information provided on the Site, and any statements and opinions are subject to change without 
            notice.
        </p>
        <p>BY FEATURING A PARTICULAR STRATEGY OR INVESTMENT, WE ARE NOT RECOMMENDING THAT YOU UTILIZE THAT STRATEGY OR THAT YOU 
        PURCHASE OR SELL CERTAIN COMPANIES’ SECURITIES, WHICH ARE HIGHLY SPECULATIVE. The trading strategies and investments which 
        may be featured during demonstrations on the Site, in the chat rooms and in our emails are highly speculative and carry an extremely high 
        degree of risk. WHT does not represent or warrant in any way that by becoming a subscriber to the Service that you will 
        make money trading, nor that you will become a better trader. Neither our guest traders nor WHT guarantees any specific 
        outcome or profit.</p>
        <p>You should be aware of the real risk of loss in following any strategy or investment discussed on the Site. Strategies 
            or investments discussed may fluctuate in price or value. Investors may get back less than invested. An Investor’s use 
            of the strategies and information provided by our guest traders is at the investor’s sole risk, which may result in the 
            loss of some or all of an investor’s entire investment. WHT makes no recommendation that the featured strategizes or 
            securities of the companies involved should be purchased, sold or held by individuals or entities that learn of these 
            strategies and companies through the Site. Past performance is not indicative of future results.
        </p>
        <p>DO NOT JUST LISTEN TO WHAT WE SAY, DO YOUR OWN RESEARCH. Investments or strategies mentioned on the Site may not be 
            suitable for you. This material does not take into account your particular investment objectives, financial situation or 
            needs and is not intended as recommendations appropriate for you. You must make an independent decision regarding 
            investments or strategies mentioned on the Site. Before acting on information, you should consider whether it is suitable
             for your particular circumstances and you should seek advice from your own financial or investment adviser before 
             deciding to follow any of the strategies or investments of our guest traders.
        </p>
        <p>GENERAL USE OF THE SERVICE. The Service is accessible through your personal computer or other access device at the 
            Site. As part of the Service, you will be provided with live demonstrations of real-time trading and other information, 
            editorial content, chat rooms, links to other web sites and other related services that WHT may decide to offer. WHT does not guaranty a minimum number of hours per week that its guest traders may engage in live trading. Further, there is no guarantee that any live trades will actually be made and, if they are, there is no guarantee that an explanation of those trades will be provided. WHT may, in its sole discretion, discontinue or alter any aspect of the Service, including, but not limited to, (i) restricting the time of availability, (ii) restricting the availability and/or scope of the Service for certain platforms (i.e., computer types and operating systems), (iii) restricting the amount of use permitted, and (iv) restricting or terminating any User’s right to use all or part of the Service, at any time in WHT’s sole discretion and without prior notice or liability other than as provided below.</p>
            <p>The Service is owned and operated by WHT and contains material that is derived in whole or in part from material supplied 
            and owned by WHT and/or its suppliers and licensors. Such material is protected by copyright, trademark, and other 
            applicable laws. You may not modify, copy, reproduce, republish, upload, post, transmit, publicly display, prepare 
            derivative works based (whether in whole or in part) on, or distribute in any way all or any part of the Service or 
            any material from the Service, including but not limited to code and software (“Material”). You may, however, subject 
            to your compliance with this Agreement, and solely for as long as you are permitted by WHT to access and use the Service, 
            download certain Material from the Service for your personal, non-commercial use only, provided you do not remove, alter, 
            interfere with, or circumvent any copyright, trademark or other proprietary notices. In the event that you download 
            Material from the Service, such Material is licensed to you by WHT and WHT does not transfer title to any such Material 
            to you.
        </p>
        <p>
            CONTESTS. WHT may in its sole discretion periodically offer contests with the possibility of
            earning monetary awards or other bonuses. Your entry into such contest will be specifically conditioned on being an 
            active user of the Service for the full duration of such contest and your further acceptance of the rules and conditions
            accompanying such contest, which rules will remain posted to the Service for the duration of the contest. WHT is under no 
            obligation to offer any contests or prizes or continue to offer such contests or prizes.
        </p>
        <p>
            CHAT ROOMS. Certain subscription plans will allow you access to chat rooms as part of the Service. Your use of 
            the chat rooms are specifically governed by these terms of use, including the following. Any message posted in 
            the chat rooms expresses only the views of the author of the message and does not reflect the views of WHT or 
            any person or entity associated with it. While WHT may use moderators and administrators to monitor the content 
            and appearance of messages posted in the chat rooms, you acknowledge that WHT is under no obligation to do so. 
            Considering the real-time nature of the chat rooms, it is impossible for us to monitor or review every message. 
            You agree that neither WHT, nor any person or entity associated with it, will be held responsible for the 
            contents, accuracy, completeness or validity of any information posted in the chat rooms. You agree that you will 
            not use the chat rooms to post any material, or links to any material, or to attach files, which includes 
            material, which is knowingly false and/or defamatory, inaccurate, abusive, vulgar, hateful, harassing, obscene, 
            profane, sexually oriented, threatening, invasive of a person's privacy, or otherwise violative of any law. You 
            agree you will not post promotional information for a website or entity with which you are an affiliate, employee, 
            owner, or otherwise receive any benefit from. Users who breach this provision are authorizing WHT to delete the 
            post and terminate any further access by you to the Service (without refund of any prepaid amounts). You agree you 
            will not post any copyrighted material without the express permission of the copyright holder, unless such copyright
            is owned by you or WHT.
        </p>
        <p>
            Your use of the chat rooms grants WHT a perpetual, world-wide, royalty-free license to distribute, copy, adapt, 
            reproduce, transmit and otherwise use content and information you post in our chat rooms for any purpose and in 
            any media now known or hereinafter developed. You expressly agree that we are free to use any ideas, concepts, 
            know-how, or techniques contained in any posting or communication you send to us without compensation and for 
            any purpose whatsoever, including but not limited to, developing, manufacturing and marketing products and 
            services using such information.
        </p>
        <p>
            Advertisements, referral programs, pyramid schemes, and solicitations are also inappropriate in WHT chat rooms. 
            Any user who believes that a posted message is objectionable is encouraged to contact us immediately by emailing 
            us at team@watchhimtrade.com. Upon receipt of such notification, we will make reasonable efforts to take such 
            action as we deem necessary within a reasonable period of time. Since this is a manual process, you are advised 
            that we may not be able to remove or edit particular messages immediately. WHT reserves the right to delete any 
            message for any reason whatsoever, at our sole discretion. You agree that you are solely responsible for the 
            content of your messages, and that you will indemnify and hold harmless WHT and their agents and employees with 
            respect to any claim based upon the appearance and/or transmission of your message(s).
        </p>
        
        <p>MEMBERSHIP. When you register to use the Service, you will be required to provide certain information about yourself. 
            You agree to provide true, accurate and complete information, and to update this information when it changes. Any 
            personally identifiable information will be subject to the terms of our Privacy Policy. WHT has no obligation to monitor 
            the use of the Service by members, but reserves the right to do so at any time. WHT reserves the right at all times to 
            refuse to post, alter or remove any Material, in whole or in part, in its sole discretion.
        </p>
        <p>SUBSCRIPTION TERMS.</p>
        <p>FEES.</p> 
        <p><strong>TWO SERVICES.</strong>&nbsp; We offer a “Live Trading” Service for $99.99 per month and a “Chat Room” 
            Service for $8.99 per month.
        </p>
        <p><strong>TRIAL PERIOD.</strong>&nbsp; We charge a nominal fee ($5.00) to access our Live Trading Service for a 
            15-day trial period, which is non-refundable. We offer a 15-day free trial to access our Chat Room service. </p>
            <p><strong>AUTOMATIC ENROLLMENT.&nbsp; <span style="text-decoration: underline;">At the end of the trial period, you 
            will be AUTOMATICALLY enrolled as a subscriber and CHARGED AN ADDITIONAL $99.99 or $8.99 UNLESS YOU CANCEL the service 
            during the trial period.&nbsp; Subscribers can go to the “my account” 
            (<a href="http://watchhimtrade.com/my-account">found here</a></span><span style="text-decoration: underline;">) 
            section of the website and click the “unsubscribe” button in order to cancel during the 15-day trial period.&nbsp; 
            If the subscription is NOT CANCELED by the end of the last day of the trial period, your credit card WILL BE CHARGED 
            AN ADDITIONAL $99.99, or $8.99 which amount is NON-REFUNDABLE unless you notify us within 48 hours after the 
            charge appears on your credit card. This refund policy only applies TO YOUR FIRST CHARGE. Charges after your first full billing cycle are NON-REFUNDABLE under any circumstances.
        </span></strong></p>
        <p><strong>COUPON CODES. <span style="text-decoration: underline;">If you sign up with a coupon code (discount) there 
            are NO REFUNDS unless the applicable coupon stated in writing that there was a refund opportunity attached to your discount. For 
            example, during certain promotional periods WHT may offer a discount with a 7-day money back guarantee. During 
            these promotions, the applicable coupon code will specifically include the guarantee in writing.<br>
        </span></strong></p>
        <p>The trial period is only available to first time subscribers of the Service, and only one trial may be redeemed per 
            person (i.e. your next subscription will not include the 15-day trial period and will be charged at WHT’s standard rates at the time of the subscription). You must have 
            Internet access, a valid email address and a valid credit card to register for the Service. WHT will charge your credit 
            card for the subscription fees corresponding to your subscription plus any applicable taxes.&nbsp; Depending upon your 
            subscription plan, WHT may continue to bill your credit card on a regular basis for your plan until you cancel. We reserve 
            the right to modify, terminate or otherwise amend our offered subscription plans. In the event of a change in any fees, 
            the fee changes will be posted or you will be sent an email prior to the effective date of the change. It is your sole 
            responsibility to check this page from time to time for any such notices.
        </p>
        <p>CREDIT CARD AUTHORIZATION. By subscribing to the Service, you are expressly agreeing that we are permitted to bill 
            you a periodic subscription fee, any applicable tax and any other charges you may incur in connection with your use of 
            the Service. YOU WARRANT THAT YOU HAVE THE LEGAL RIGHT TO USE THE CREDIT CARD YOU PROVIDE. The subscription fee will be 
            billed at the beginning of your subscription and on each periodic renewal thereafter unless and until you cancel your 
            membership. For those subscribers selecting auto-renewal, you must cancel your subscription before it renews each period 
            in order to avoid being charged for the next period’s subscription fees. We will automatically bill your credit card on 
            the calendar day corresponding to the day after your trial period has ended. In the event your subscription began on a 
            day not contained in a given month, we will bill your credit card on the last day of the month (e.g, if you became a 
            paying member on March 31, your credit card would next be billed on April 30). &nbsp;The charges will appear on your bill 
            as “Paypal *WHT LLC.” There will be no refunds or credits for partially used periods, unless required by applicable law. 
            We may change the fees and charges in effect, or add new fees and charges from time to time, but we will give you advance 
            notice of these changes by posting a notice or by e-mail. If your credit card reaches its expiration date, your continued 
            use of the Service constitutes your authorization for us to continue billing that credit card and you remain responsible 
            for any uncollected amounts. If a charge to your credit card is denied for any reason, WHT shall have the right to terminate 
            or suspend your subscription and your access to the Service.
        </p>
        <p>CANCELLATION. You may cancel your subscription or your trial at any time, and cancellation will be effective immediately. You will 
            lose access to the Service upon cancellation. WHT DOES NOT PROVIDE REFUNDS OR CREDITS FOR ANY PARTIAL-PERIOD SUBSCRIPTION 
            PERIODS OR UNUSED SERVICES, UNLESS OTHERWISE REQUIRED BY APPLICABLE LAW. WHT reserves the right to discontinue any 
            subscription at any time, and to cancel your subscription in connection with the discontinuation of the Service; in 
            such event, WHT will provide a pro-rata return of your subscription fee based on the unused portion of your subscription. 
            WHT reserves the right to terminate your account for any reason or no reason.’
        </p>
        <p>COOKIES. In order to provide you with ease of access to your account, WHT may place a cookie (a small text file) on 
            any computer from which you access the Service. When you revisit the Service, this cookie will enable us to recognize 
            you as the account holder and provide you with direct access to your account without requiring you to retype any password
             or other user identification. You are responsible for updating and maintaining the truth and accuracy of the information 
             you provide to us relating to your account. You also are responsible for maintaining the confidentiality of your account 
             and password and for restricting access to your computer or mobile device. Users of public or shared computers or 
             unprotected mobile devices should log out at the completion of each visit to the Service. If you find that you’re a 
             victim of identity theft and it involves a WHT account, you should notify us immediately. Then, you should report this 
             instance to all your credit card issuers, as well as your local law enforcement agency. WHT reserves the right to place 
             any account on hold anytime with or without notification to the subscriber in order to protect itself from what it 
             believes to be fraudulent activity. WHT is not obligated to credit or discount a membership for holds placed on the 
             account by either a representative of WHT or by the automated processes of the Service.
        </p>
        <p>NO REDISTRIBUTION. You agree not to reproduce, duplicate, copy, sell, trade, resell or exploit for any commercial 
            purposes, any portion of the Service, use of the Service, or access to the Service.
        </p>
        <p>DISCLAIMER OF WARRANTIES. WHT MAY PROVIDE LINKS AND POINTERS TO INTERNET SITES MAINTAINED BY THIRD PARTIES (“THIRD PARTY SITES”)
             AND MAY FROM TIME TO TIME PROVIDE THIRD PARTY MATERIALS ON THE SERVICE. WHT, ITS AFFILIATES OR SUPPLIERS DO NOT OPERATE, 
             OR CONTROL IN ANY RESPECT, ANY INFORMATION, PRODUCTS OR SERVICES ON THESE THIRD PARTY SITES. THE SERVICE, THE MATERIALS 
             AND PRODUCTS AVAILABLE IN OR ACCESSIBLE THROUGH THE SERVICE, AND THE THIRD PARTY SITES ARE PROVIDED “AS IS” AND, TO THE 
             FULLEST EXTENT PERMISSIBLE PURSUANT TO APPLICABLE LAW, WHT DISCLAIMS ALL WARRANTIES, EXPRESS, IMPLIED OR STATUTORY. WHT 
             DOES NOT WARRANT THAT THE FUNCTIONS CONTAINED IN SUCH MATERIALS AND PRODUCTS, OR IN THE SERVICE, WILL BE UNINTERRUPTED 
             OR ERROR-FREE, OR THAT THE SERVICE WILL BE AVAILABLE FOR USE AT ANY PARTICULAR TIME. WHT DOES NOT WARRANT OR MAKE ANY REPRESENTATIONS REGARDING THE USE, OR THE RESULTS OF THE USE, OF THE 
             MATERIALS IN THE SERVICE OR IN THIRD PARTY SITES IN TERMS OF THEIR CORRECTNESS, ACCURACY, TIMELINESS, RELIABILITY, 
             COMPLETENESS OR OTHERWISE.
         </p>
        <p>YOU ASSUME ALL RISK OF ERRORS AND/OR OMISSIONS IN THE SERVICE, INCLUDING THE TRANSMISSION OR TRANSLATION OF 
            INFORMATION.
        </p>
        <p>USERS UNDER THE AGE OF 18. If you have agreed to allow your minor child to use the Service, you agree that you 
            shall be solely responsible for: (i) his or her conduct; (b) monitoring his or her access to and use of the Service; 
            and (c) the consequences of his or her use of the Service. Children under the age of 13 may not register for the 
            Service. We may ask whether users are under the age of 18 or 13, and WHT relies on our users to be truthful in 
            responding to these questions. If a user does not identify his/her proper age, we will have no way of verifying 
            actual age. WHT is concerned about the safety and privacy of all its users, particularly children. However, as 
            your child’s legal guardian, it is your responsibility, not the responsibility of WHT, to determine whether any 
            portion of the Site, or any site linked from the Site, is appropriate for your child.
        </p>
        <p>INFRINGEMENT POLICY. Pursuant to 17 U.S.C. Section 512 as amended by Title II of the Digital Millennium Copyright 
            Act (the “Act”), WHT reserves the right, but not the obligation, to terminate your use of the Service if it determines 
            that you are involved in infringing activity, including alleged acts of first-time or repeat infringement, regardless 
            of whether the material (the “Material”) is ultimately determined to be infringing. WHT accommodates and does not interfere with 
            standard technical measures used by copyright owners to protect their Material. In addition, WHT maintains procedures 
            for receiving written notification of claimed infringements and for processing such claims in accordance with the 
            Act. All claims of infringement must be submitted to WHT in a written complaint that complies with the requirements 
            below and is delivered to our designated agent to receive notification of claimed infringement, by e-mail at 
            team@watchhimtrade.com.
        </p>
        <p>In addition, any written notice regarding any defamatory or infringing activity, whether of a copyright, patent, 
            trademark or other proprietary right must include the following information:
        </p>
        <ol>
        <li>A physical or electronic signature of a person authorized to act on behalf of the owner of an exclusive right that 
            is allegedly infringed.
        </li>
        <li>Identification of the copyrighted work claimed to have been infringed, or, if multiple copyrighted works at a 
            single online site are covered by a single notification, a representative list of such works at that site.
        </li>
        <li>Identification of the Material that is claimed to be infringing or to be the subject of infringing activity and 
            that is to be removed or access to which is to be disabled, and information reasonably sufficient to permit WHT to 
            locate the Material.
        </li>
        <li>Information reasonably sufficient to permit WHT to contact the complaining party, such as an address, telephone 
            number, and, if available, an electronic mail address at which the complaining party may be contacted.
        </li>
        <li>A statement that the complaining party has a good faith belief that use of the Material in the manner complained 
            of is not authorized by the copyright owner, its agent, or the law.
        </li>
        <li>A statement that the information in the notification is accurate, and under penalty of perjury, that the 
            complaining party is authorized to act on behalf of the owner of an exclusive right that is allegedly infringed.
        </li>
        </ol>
        <p>ILLINOIS LAW AND JURISDICTION. This Agreement shall be governed by and construed in accordance with the laws of the 
            State of Illinois without giving effect to any principles of conflicts of law. You hereby agree that any disputes 
            arising under or in connection with this Agreement and/or the Service shall be submitted for resolution to federal 
            and state courts located in Cook County, Illinois, and you hereby waive any jurisdictional, venue, or inconvenient 
            forum objections to such courts.
        </p>
        <p>ARBITRATION. You agree that any dispute, claim or controversy relating to WHT, the Site or the Service shall 
            be submitted for binding arbitration in accordance with the Commercial Arbitration Rules of the American Arbitration 
            Association (“AAA”), as modified by any other instructions that the parties may agree upon at the time. If there is 
            any conflict between the AAA rules and the provisions of this Agreement, the provisions of this Agreement shall 
            control. The arbitration shall be conducted by a single arbitrator selected in accordance with the rules, who shall 
            be bound by and shall strictly enforce the terms of this Agreement and may not limit, expand or otherwise modify its 
            terms, and shall make a good faith effort to apply substantive applicable law. The arbitrator’s decision shall provide 
            a reasoned basis for the ruling, which shall be final and binding upon the parties. Each party shall bear its own fees 
            and expenses with respect to the arbitration and any proceeding related thereto and the parties shall share equally the 
            fees and expenses of the AAA and the arbitrator.
        </p>
    </div>                              </div>
                              <div class="modal-footer">
                                <button type="button" class="btn btn-danger" data-dismiss="modal">Close</button>
                              </div>
                            </div>
                          </div>
                        </div>
		</div>
	</div>
	<script src="/theme/js/jquery-1.11.1.min.js"></script>
	<script src="/theme/js/jquery-ui-1.11.1.js"></script>
	<script src="/theme/js/jquery.validate.min.js"></script>
	<script src="/theme/js/bootstrap.min.js"></script>
	<script src="/theme/js/lightbox.js"></script>
	<script src="/theme/js/WHT.js"></script>
	<script src="/theme/js/videoplayer.js"></script>
	<script src="/theme/js/jquery.gridster.with-extras.js"></script>

	<!-- Angular -->
	<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js"></script>

	<script type="text/javascript">
            $(document).ready(function ($) {

            	/* Phone Consultation submit */
            	$(document).delegate('#SendRequest', 'click', function(event) {
            		/* Do form validation here */
            		$('#PhoneConsultationForm').validate(
					{
					  rules: {
					    firstname: {
					      minlength: 2,
					      required: true
					    },
					    /*
					    email: {
					      required: true,
					      email: true
					    },
					    */
					    number: {
					      minlength: 2,
					      required: true
					    },
					    timeToCall: {
					      minlength: 2,
					      required: true
					    }
					  },
					  highlight: function(element) {
					    $(element).closest('.form-group').removeClass('success').addClass('has-error');
					  },
					  success: function(element) {
					    element
					    .text('OK!').addClass('valid')
					    .closest('.form-group').removeClass('has-error').addClass('success');
					  }
					 });
            		$("#PhoneConsultationForm").submit();
                });

            	/* LightBox */
                // delegate calls to data-toggle="lightbox"
                $(document).delegate('*[data-toggle="lightbox"]', 'click', function(event) {
                    event.preventDefault();
                    return $(this).ekkoLightbox({
                        onShown: function() {
                            if (window.console) {
                                return console.log('Checking our the events huh?');
                            }
                        }
                    });
                });

                /* FAQ Accordian */
                $('.collapse').on('show.bs.collapse', function() {
			        var id = $(this).attr('id');
			        $('a[href="#' + id + '"]').closest('.panel-heading').addClass('active-faq');
			        $('a[href="#' + id + '"] .panel-title span').html('<i class="glyphicon glyphicon-minus"></i>');
			    });
			    $('.collapse').on('hide.bs.collapse', function() {
			        var id = $(this).attr('id');
			        $('a[href="#' + id + '"]').closest('.panel-heading').removeClass('active-faq');
			        $('a[href="#' + id + '"] .panel-title span').html('<i class="glyphicon glyphicon-plus"></i>');
			    });
           	});

			/* 
				STRIPE STUFF 
			*/
			$(function() {
				  $('form.require-validation').bind('submit', function(e) {
				    var $form         = $(e.target).closest('form'),
				        inputSelector = ['input[type=email]', 'input[type=password]',
				                         'input[type=text]', 'input[type=file]',
				                         'textarea'].join(', '),
				        $inputs       = $form.find('.required').find(inputSelector),
				        $errorMessage = $form.find('div.error'),
				        valid         = true;

				    $errorMessage.addClass('hide');
				    $('.has-error').removeClass('has-error');
				    $inputs.each(function(i, el) {
				      var $input = $(el);
				      if ($input.val() === '') {
				        $input.parent().addClass('has-error');
				        $errorMessage.removeClass('hide');
				        e.preventDefault(); // cancel on first error
				      }
				    });
				  });
				});

				$(function() {
				  var $form = $("#payment-form");

				  $form.on('submit', function(e) {

				  	/* make sure they accept the terms first */
			  	    if(!$('input[type=checkbox]:checked').length) {
				        alert("Please check off and acknoledge our terms and conditions before continuing.");
				        $('input[type=checkbox]').focus();
				        //stop the form from submitting
				        return false;
				    }

				  	$form.find('button').prop('disabled', true);

				    if (!$form.data('cc-on-file')) {
				      e.preventDefault();
				      /* Stripe.setPublishableKey($form.data('stripe-publishable-key')); */
				      Stripe.createToken({
				        number: $('.card-number').val(),
				        cvc: $('.card-cvc').val(),
				        exp_month: $('.card-expiry-month').val(),
				        exp_year: $('.card-expiry-year').val(),
				        name: $('.name-on-card').val()
				      }, stripeResponseHandler);
				    }
				  });

				  function stripeResponseHandler(status, response) {
				    if (response.error) {
				    	$form.find('button').prop('disabled', false);
				      $('.error')
				        .removeClass('hide')
				        .find('.alert')
				        .text(response.error.message);
				    } else {
				      // token contains id, last4, and card type
				      var token = response['id'];
				      // insert the token into the form so it gets submitted to the server
				      $form.find('input[type=text]').empty();
				      $form.append("<input type='hidden' name='stripeToken' value='" + token + "'/>");
				      $form.get(0).submit();
				    }
				  }

				  /* Tooltips for my profile page */
				  $('[data-toggle="tooltip"]').tooltip();

				  /* Video player on front */
				  $(".player").mb_YTPlayer();


				});

		var type = window.location.hash.substr(1);
	    if (type != '') {
	    	var aTag = $("#"+type);
	    	$(aTag).modal('show');
	    }

    </script>

</body>

</html>
