window.onload = function() {
	if ($.browser.msie) {
		alert('Internet Explorer is not supported, please use another browser or continue at your own frustration.')
	}
	
	$('input, textarea').each(function(i) {
		var type = $(this).attr('type');
		if (type != 'hidden' && type != 'submit') {
			$(this).focus();
			return false;
		}
	});
}