/**
 * Keywords
 */
	var keywords = {	
		'no'			: ['boundaries', 'identity', 'choice', 'truth'],
		'hello' 		: ['attention', 'openness', 'exchange', 'communion'],
		'thanks' 		: ['appreciation', 'valuing', 'giving', 'heart essence'],
		'goodbye' 		: ['realization', 'decision', 'completion', 'moving on'],
		'please' 		: ['vision', 'intention', 'cooperation', 'prayer'],
		'sorry' 		: ['responsibility', 'remorse', 'repair', 'release'],
		'yes' 			: ['permission', 'acceptance', 'agreement', 'surrender']	
	};

/**
 * The url of the file that generates stats
 */
var statistics_url = 'http://www.unicorncamps.com/si_stats/si_stats.php';

/**
 * Language strings
 */
var lang_show_results = 'Show Results';

/**
 * Results html
 */
var results_only_percent = ''
results_only_percent += '<div class="results_box">';
results_only_percent += '<div class="label">Your satisfaction index is:</div>';
results_only_percent += '<div class="sort" style="width: 110px;"><div>{percent}%</div></div>';

var results_with_keywords_and_primary = results_only_percent;
results_with_keywords_and_primary += '<div class="label">Your primary word:</div>';
results_with_keywords_and_primary += '<div class="sort" style="width: 110px"><div>{primary_keyword}</div></div>';	
		
var results_with_keywords = '<div class="label">Critical keywords:</div>';
results_with_keywords += '<div class="sort left" style="width: 140px;"><div>{keyword1}</div></div>';
results_with_keywords += '<div class="sort left" style="width: 140px;"><div>{keyword2}</div></div>';
results_with_keywords += '<br class="clear" />';
results_with_keywords += '<div class="sort left" style="width: 140px;"><div>{keyword3}</div></div>';
results_with_keywords += '<div class="sort left" style="width: 140px;"><div>{keyword4}</div></div>';
results_with_keywords += '<br class="clear" />';

results_with_keywords_and_primary += results_with_keywords;
results_with_keywords =	results_only_percent + results_with_keywords;

var button_html = '';
button_html += '<button class="button">Try Again</button>';
button_html += '</div>';

results_only_percent += button_html;
results_with_keywords += button_html;
results_with_keywords_and_primary += button_html;