/* Newsletter signup */
function newsletter(){
	$("#fullname").focus( function() {
		if  (this.value =='Full Name...') {this.value='';}
	});
	
	$("#fullname").blur( function() {
		if  (this.value =='') {this.value='Full Name...';}
	});
	
	$("#email").focus( function() {
		if  (this.value =='Email...') {this.value='';}
	});
	
	$("#email").blur( function() {
		if  (this.value =='') {this.value='Email...';}
	});
}

/*
function checkform(){
	var filter = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
	var errors = [];
	if ($("#fullname").val() == "Full Name..." || $("#fullname").val() == "") {
		$("#fullname").css({'border' : '2px solid red'});
		errors.push(1);
	} else {
		$("#fullname").css({'border' : '1px solid #377596'});
	}
	
	if (!filter.test( $("#email").val())) {
		$("#email").css({'border' : '2px solid red'});
		errors.push(2);
	} else {
		$("#email").css({'border' : '1px solid #377596'});
	}
	
	return (errors.length == 0) ? true : false;
}
*/