//link viewup
jQuery(document).ready(function(){
	jQuery('#btnCont').click(function(){
		enviaContato();
	});
});
//Topbox  aparece
jQuery("#closeBox").click(function(){
	jQuery("#equipe").animate({"top": "0px"}, "slow");
	jQuery("#closeBox").animate({"top": "580px"}, "slow");
});	
//Topbox  some
jQuery(".closed").click(function(){
	jQuery("#equipe").animate({"top": "-580px"}, "slow");
	jQuery("#closeBox").animate({"top": "0px"}, "slow");
});
//enviaCurriculo
jQuery(document).ready(function(){
	jQuery('.btnEnviar').click(function(){
		enviaCurriculo();
		jQuery('#equipe :input').css('background','url(../img/index/fundoobjetosCurriculo.jpg) no-repeat 0px 0px');
	});
});

