$(document).ready(function() {
	// Set email box to have grey email text
	$('#email').val("email...").css("color", "#666666");
	
	// Clear email and set text to black when selected
	$('#email').focus(function() {
		$(this).val("").css("color", "#000000");
	});
	
	//$('#photos a').css("border", "10px solid blue");
	$('#photos a').lightBox();
});

