$(document).ready(function(){
	
/*
var block = $(".thumb, .project");
block.click(function(){
	window.location = $(this).find("a:first").attr("href")
});
block.hover(function(){
	window.status = $(this).find("a:first").attr("href")
},function(){
window.status = ""
})

$(".thumb, .project").hover(over, out);
function over(event) {
	$(this).siblings().not(this).fadeTo(200, 0.5);
}
function out(event) {
  $(this).siblings().not(this).fadeTo(200, 1);
}

*/

$('#email').focus(function(){
	if (this.value == 'Email address') {
		this.value = '';
	}
});
$('#email').blur(function(){
	if (this.value == '') {
		this.value = 'Email address';
	}	
});

});