var flashvars = false;

var params = { 
	wmode: "transparent",  
	flashvars: "selecionado="+selecionado+"&titulo="+titulo+"&cidade="+cidade+"&remover="+remover+"&evento="+evento
};

var attributes = {  
	id: "topo",  
	name: "topo"
};
		
$(document).ready(function(){

	swfobject.embedSWF(
		"/novo/flash/eventos/topo.swf", 
		"topo", 
		"100%", 
		"265", 
		"9.0.0",
		"expressInstall.swf", 
		flashvars, params, attributes
	);
	
	$('select').addClass('select');
	$('input[type=text]').addClass('input');
	$('input[type=checkbox]').addClass('checkbox');
	
	$(':input').focus(function(){
		$(this).css('background-color', '#ffe');
	}).blur(function(){
		$(this).css('background-color', '#fff');
	});
	
	$('#participante\\[origem_id\\]').change(function(){
		var origem = $(this).val();
		if (origem == '5') {
			$('#participante\\[origem\\]').show();
		} else {
			$('#participante\\[origem\\]').hide();
		}
	}).change();
	
	$('#participante\\[ocupacao_id\\]').change(function(){
		var ocupacao = $(this).val();
		switch(ocupacao) {
		case '5': // Outro
			$('#row-nivel').hide();
			$('#row-area').hide();
			$('#participante\\[ocupacao\\]').show();
			break;
		case '3': // Coordenador
			$('#row-nivel').show();
			$('#row-area').show();
			$('#participante\\[ocupacao\\]').hide();
			break;
		case '4': // Professor
			$('#row-nivel').show();
			$('#row-area').show();
			$('#participante\\[ocupacao\\]').hide();
			break;
		default:
			$('#row-nivel').hide();
			$('#row-area').hide();
			$('#participante\\[ocupacao\\]').hide();
		}
	}).change();

});

