window.addEvent("domready", function(){
	
	$('mailto').addEvents({
		"change": function(e, i){
			if(this.value != false){ location.href = 'mailto:' + this.value + '?subject='; }
			
		},
		"mouseenter": function() {
			this.tween('width', 260);
		},
		"focus": function(){
			this.tween('width', 260);
		},
		"blur": function() {
			this.tween('width', 100);
		}
	
	});
	
	
});
