
addLoadEvent(do_games_flash_replacements);


function do_games_flash_replacements() {

	replace_points_of_the_horse_game();
	replace_jockey_uniform_game();
	replace_quiz_game();
	replace_word_search_game();
	replace_points_of_the_horse();
}

function replace_flash_game(replace_id, swf_path) {
	
	var width = 472;
	var height = 442;

	do_flash_replacement(replace_id, swf_path, height, width, false, '#ffffff');	
}

function replace_points_of_the_horse_game() {
	
	var replace_id = 'points_of_the_horse_game';
	var swf_path = '_g/darley_pointsofahorse.swf';
	
	replace_flash_game(replace_id, swf_path);
}

function replace_jockey_uniform_game() {
	
	var replace_id = 'jockey_uniform_game';
	var swf_path = '_g/darley_jockeyuniform.swf';
	replace_flash_game(replace_id, swf_path);
}

function replace_quiz_game() {
	
	var replace_id = 'quiz_game';
	var swf_path = '_g/darley_quiz.swf';
	replace_flash_game(replace_id, swf_path);
}

function replace_word_search_game() {
	
	var replace_id = 'word_search_game';
	var swf_path = '_g/darley_wordsearch.swf';
	replace_flash_game(replace_id, swf_path);
}

function replace_points_of_the_horse() {
	
	var replace_id = 'points_of_the_horse';
	var swf_path = '_g/darleyflashV11.swf';
	
	replace_flash_game(replace_id, swf_path);
}

