// do stuff when DOM is ready
$(document).ready(function() {
	// set color for all input elements
	$(".contactform input:text").css("color","#acacac");
	$(".contactform textarea").css("color","#acacac");	
	// set mouse click color changes
	$('.contactform input:text').focus(function () {
		$(this).attr({ value: "", style: "color: #464646" });
    });
	$('.contactform textarea').focus(function () {
		$(this).attr({ value: "", style: "color: #464646" });
    });   
});