$(document).ready(function(){
	$("a[rel^='prettyPhoto']").prettyPhoto({
		showTitle: false,
		theme: 'facebook'
	});
	
	$(".contact p input, .contact p textarea").focus(function () {
    $(this).addClass("white");
  });
	
		$(".contact p input, .contact p textarea").blur(function () {
    $(this).removeClass("white");
  });
			
});
