$(document).ready(function() {
	// denote the current menu item
	$("#menu a:current").addClass("current");

	// setup form element highlighting	
	$(".form input[type='text'], .form input[type='checkbox'], .form input[type='password'], .form textarea, .form select").focus(function () {
		$(this).addClass("highlight");
	});
	$(".form input[type='text'], .form input[type='checkbox'], .form input[type='password'], .form textarea, .form select").blur(function () {
		$(this).removeClass("highlight");
	});
});

function PlaceFocusOnElementId(elementId) {
	$(elementId).focus().select().addClass("highlight");
}
