Code:
$('#email, #search').toggletextfieldvalue({autoselect: true});
Code:
$('#comment').toggletextfieldvalue({
mouseover: function(obj) {
$(obj).height($(obj).height() + 100);
},
mouseout: function(obj) {
$(obj).height($(obj).height() - 100);
}
});