function focusFields(){

$("#container-newsletter input").focus(function() {
	if( this.value == this.defaultValue ) {
		this.value = "";
		console.log('i am focused!');
	}
}).blur(function() {
	if( !this.value.length ) {
		this.value = this.defaultValue;
	}
});
}


function setDate(){
	new Date();
var d = new Date();
document.write(d.getFullYear()); 
}

