function mail(name, domain, style) { //thanks to Andrey "Chips" Kuzmin
	document.write('<a h'+'ref="'+'mai'+ 'lto:'+name+'@'+domain+'" style="'+style+'">'+name+'@'+domain+'</a>');
}

$(document).ready(function(){
	$('div.blubird').hover( function() {
		$(this).addClass('blubird_on');
	}, function() {
		$(this).removeClass('blubird_on');
	});
});