/*
This module changes the text "Browse..." to the appropriate upload button label for the browser (e.g. Choose File if the browser is Safari). To use, wrap the Browse text thusly: <span id="browseText">Browse&hellip;</span>
*/

function browseText() {
	if ($.browser.safari) {
		$('#browseText').html('Choose File');
	} else if ($.browser.opera) {
		$('#browseText').html('Choose&hellip;');
	}
}

$(document).ready(function() {
	browseText();
});
