jQuery.noConflict();
jQuery(document).ready(function($) {
  $('a.see-more').bind('mouseenter', function() { $(this).parents('form').addClass('expanded'); } );
  $('#subheader form').bind('mouseleave', function() { $(this).removeClass('expanded'); } );
});

jQuery.fn.mailto = function(opts) {
	var email = opts.name + '@' + opts.domain + '.' + opts.extension;
	$(this).html('<a href="mailto:' + email + '" rel="nofollow" title="Email ' + email + '">' + email + '</a>');
};
