$(document).ready(function() {
	
	if(typeof String.prototype.trim !== 'function') {
	  String.prototype.trim = function() {
	    return this.replace(/^\s+|\s+$/g, ''); 
	  }
	}
	
	// Main video;
	var flashVars0 = {};
		flashVars0.file = "BigProfitSecret.flv";
		flashVars0.image = "images/preview.jpg";
		flashVars0.icons = "true";
		flashVars0.controlbar = "none";
		flashVars0.autostart = "true";
		flashVars0.aboutlink = "http://www.bethebossnetwork.com/";
		flashVars0.abouttext = "BeTheBossNetwork.com";
	var flashParams0 = {};
		flashParams0.allowfullscreen = "true";
		flashParams0.allowscriptaccess = "true";
		flashParams0.wmode = "opaque";
	var flashOptions0 = {};
		flashOptions0.id = "video-container-main";
		flashOptions0.name = "video-container-main";
	swfobject.embedSWF("media/player-licensed.swf", "video-container-main", "480", "295", "9.0.0", "expressInstall.swf", flashVars0, flashParams0, flashOptions0);
	
	/*
	$("#video-preview").click( function(e){
		e.preventDefault();
		alert("Please complete the form on the right before watching this video.");
	});
	*/
	
	// Load call date;
	$("#dateContainer").load("_date.php");
	
});

function setNameValues() {
	$oName = $("#name");
	oNameElements = $oName.val().trim().split(" ");
	
	$("#firstname").val(oNameElements[0]);
	
	cLastName = '';
	for (i=1;i<oNameElements.length;i++) {
		cSpace = " ";
		if (i==1) {
			cSpace = '';
		}
    	cLastName = cLastName + cSpace + oNameElements[i];
	};
	$("#lastname").val(cLastName.trim());
}

function submitFormFunction() {
	setNameValues();
	stepAll('captureForm',1);
}
