/*
 * Author : Cvetozar Ninov
 * Email  : cninov@gmail.com
 * */
$(document).ready(function(){
	
	$('form.game_matches em').click(function(){
		if(is_game_disabled !=1) {
			$('em',$(this).parent()).removeClass("selected");
			$(this).addClass("selected");
			$('input',$(this).parent().parent()).val($(this).html());
		}
	});
});

function validate_game() 
{
	$.get(_root+"xhr?method=validate_game",$("form.game_matches").serialize(),function(data){
		add_flash_message(data.message);
	},'json');
}
