$(document).ready(function(){
	// specific functionality for pages with forms
	
	// set font-weight to normal for row-scoped table headers
	$('th[scope="row"]').css('font-weight','normal');
	
	// remove border from last nested fieldset
	$('#mainContent fieldset').each(function(){
		$(this).find('fieldset:last').css('border-bottom','none');
	});
	
	// add 'help' cursor to input elements with title tags
	$('label[title]').css('cursor','help');
});