jQuery(document).ready(function(){
	//jQuery("a[href*='http://']:not([href*='"+location.hostname+"'])").attr("target","_blank");
	jQuery("input[type=text]").clearDefault();
	jQuery('.fone').mask('(99) 9999-9999');
	jQuery('.data').mask('99/99/9999');
	jQuery('.horario').mask('99:99');

});
function heightPadrao(){
	jQuery('#content, #primary').equalHeight();
}
function heightPadraoHome(){
	jQuery('#home-media, #home-noticias, #home-parceiros').equalHeight();
}
function CheckMultiple142(frm, name) {
	for (var i=0; i < frm.length; i++)
	{
		fldObj = frm.elements[i];
		fldId = fldObj.id;
		if (fldId) {
			var fieldnamecheck=fldObj.id.indexOf(name);
			if (fieldnamecheck != -1) {
				if (fldObj.checked) {
					return true;
				}
			}
		}
	}
	return false;
}
function CheckForm142(f) {
	var email_re = /[a-z0-9!#$%&'*+\/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+\/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?/i;
	if (!email_re.test(f.email.value)) {
		alert("Por favor, preencha seu endereço de email.");
		f.email.focus();
		return false;
	}
		return true;
	}


