$(document).ready(function () {
	$(".compartilhar").click(function (){
		$(this).next('.share').toggle();
	});
	$(".twitter").hover(function() {
		$(this).attr("src","/Content/Images/twitter_hover.jpg");
			}, function() {
		$(this).attr("src","/Content/Images/twitter.jpg");
	});
	$(".delicious").hover(function() {
		$(this).attr("src","/Content/Images/delicious_hover.jpg");
			}, function() {
		$(this).attr("src","/Content/Images/delicious.jpg");
	});
	$(".google").hover(function() {
		$(this).attr("src","/Content/Images/google_hover.jpg");
			}, function() {
		$(this).attr("src","/Content/Images/google.jpg");
	});
	$(".windows").hover(function() {
		$(this).attr("src","/Content/Images/windows_hover.jpg");
			}, function() {
		$(this).attr("src","/Content/Images/windows.jpg");
	});
	$(".yahoo").hover(function() {
		$(this).attr("src","/Content/Images/yahoo_hover.jpg");
			}, function() {
		$(this).attr("src","/Content/Images/yahoo.jpg");
	});
	$(".email").hover(function() {
		$(this).attr("src","/Content/Images/e-mail_hover.jpg");
			}, function() {
		$(this).attr("src","/Content/Images/e-mail.jpg");
	});
	$(".clientes img").hover(function() {
		$(this).prev("div").show();
			}, function() {
		$(this).prev("div").hide();
	});
	$(".clientebar").hover(function() {
		$(this).show();
			}, function() {
		$(this).hide();
	});
	$("input:file").filestyle({ 
		image: "Content/Images/btn-arquivo.jpg",
		imageheight : 29,
		imagewidth : 119,
		width : 470
	});
	$(".cliente-portfolio img:even").css("marginRight", "40px");
	$(".arquivo").click(function(){
		$(".enviar-arquivo").show();
	});
	$(".curriculo").click(function(){
		$(".enviar-curriculo").show();
	});
	$(".close-btn").click(function(){
		$(".enviar-arquivo").hide();
		$(".enviar-curriculo").hide();
		$(".enviado").hide();
	});
	jQuery(function($){
	   $("#telefonearquivo").mask("99-9999-9999");
	   $("#telefonecurriculo").mask("99-9999-9999");
	   $("#telefone").mask("99-9999-9999");
	});
})
