(function($){

	var recs = $('select#recipient');
	
	recs.change(function(e){
		e.preventDefault();
		var	selIndex = parseInt(recs.attr('selectedIndex')),
			opt = $('option', recs).get(selIndex),
			val = opt.value,
			profile = $('#pro-' + val),
			proHtml = profile.html(),
			contentCell = $('#rec-content'),
			names = $(opt).text().split(' '),
			email = names[0].charAt(0).toLowerCase()
					+ names[1].toLowerCase()
					+ '@' + 'baker' + 'tankhead' + '.' + 'com',
			mailto = $('<a></a>').attr('href', 'mail' + 'to:' + email).text(email);
		if (selIndex == 0)
			contentCell.html('');
		else
			contentCell.html(proHtml).append($('<br />')).append(mailto);
	});

})(jQuery);