$(function(){
	$.addPlugin('mask');
	$.addPlugin('validate',null,function(){
		$('#conteudo form:first').submit(function(){
			if($('table.produtos tbody tr td input[type=checkbox]').filter(':checked').length < 1){
				alert('Nenhum produto foi selecionado!\nSelecione um produto para adicioná-lo ao orçamento!');
				$('table.produtos tbody tr td input:first').focus();
				return false;
			}
		}).validate();
		$('#OrcamentoNome').rules('add',{
			required: true
		});
		$('#OrcamentoEmpresa').rules('add',{
			required: true
		});
		$('#OrcamentoCidade').rules('add',{
			required: true
		});
		$('#OrcamentoEmail').rules('add',{
			required: true,
			email: true
		});
		$('#OrcamentoFone').rules('add',{
			required: true
		});
		$('#OrcamentoPais').change(function(){
			if($(this).val() == 'Brasil'){
				$('#OrcamentoUf').rules('add',{
					required: true
				});
				$cake('Orcamento.fone').mask('(99) 9999-9999');
			}else{
				$('#OrcamentoUf').rules('remove','required');
				$cake('Orcamento.fone').unmask();
			}
		}).change();
	});
	$('table.produtos tbody tr:odd').addClass('alternate');
	$('#orcamentos #conteudo .apoio table.produtos input:last').change(function(){
		if($(this).filter(':checked').length>0){
			$('#OrcamentoMsg').focus();
		}
	});
});