$(document).ready(function() {
	
	$('#email').css({color:"#7a7a7a"}); //set color of email input to grey
	$('#comments').css({color:"#7a7a7a"}); //set color of comments input to grey
	
	$('#email').attr("value","you@yourdomain.com"); //set default value of email input as guide
	$('#comments').attr("value","If you would like to receive a free solar calculator, please provide us with your postal address.")
	
	$('#email').one("focus", function() {	 //on email input focus clear text and set color to black
		$(this).attr({value:""});
		$(this).css({color:"#000000"});
	});
	
	$('#comments').one("focus", function() {
		$(this).attr({value:""});
		$(this).css({color:"#000000"});
	});
	
	var inputs = $("input[id!='submit'],textarea");
	inputs.css({ border: "1px solid #ee0000" });
	inputs.keydown(function() {
		var value = $(this).val();
		if (value.length <= 1) {
			$(this).css({ border: "1px solid #ee0000" });
		} else {
			$(this).css({ border: "2px solid #4c9402"});
		};
	});
	
})