$(document).ready(function(){
	// Send email
	$("#contact").click(function(){
		var user = "javier";
		var domain = user + "daza.com";
		var subject = "Contacting from website";
		var mail = user + "@" + domain + "?subject=" + subject;
		$(this).attr("href", "mailto:" + mail);
	});
	/*$('img').click(function(){
		$('#overlay').show();
	});
	$('#overlay').click(function(){
		$(this).hide();
	});
	$('#bigPic').click(function(){
		alert('hello world!');
		return false;
	});*/
	// Scroll to top
	$(".scrollTop").click(function(){
		$("html, body").animate({scrollTop:0}, "slow");
	});
});
