$(function() {
	$("select#topicSelect").change(function(){
		var topic = $(this).val();
		if ( topic == 'suggestion' ) { $("input#sendTo").val('paul@ragtagfilm.com'); }
		else if ( topic == 'membership' || topic == 'rentals' || topic == 'press' ) { $("input#sendTo").val('tracy@ragtagfilm.com'); }
		else if ( topic == 'website' ) { $("input#sendTo").val('glenn@ragtagfilm.com'); }
		else if ( topic == 'volunteer' ) { $("input#sendTo").val('jon@ragtagfilm.com'); }
		else { $("input#sendTo").val('michael@ragtagfilm.com'); }
	});
});

