$(document).ready(function() {

function placeholder(){
  
	$("input[type=text]").each(function(){ 
		var phvalue = $(this).attr("placeholder");  
		$(this).val(phvalue).css('color', '#2c3243');  
	});
	  
}  

placeholder();  
					
$("input[type=text]").focusin(function(){  
	var phvalue = $(this).attr("placeholder");  
		
		if (phvalue == $(this).val()) {  
			$(this).val("").css('color', '#fff');  
		}  
});  
					
$("input[type=text]").focusout(function(){  
	var phvalue = $(this).attr("placeholder");  
		
		if ($(this).val() == "") {  
			$(this).val(phvalue).css('color', '#2c3243');  
		}  
});

$('header p').hide();
 
});

